Sorawiz commited on
Commit
fc5e8c6
·
verified ·
1 Parent(s): 2059e24

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -9,6 +9,27 @@ tags:
9
  - merge
10
 
11
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  # GGUF
13
 
14
  Thank you [mradermacher](https://huggingface.co/mradermacher) for creating the GGUF versions of this model.
 
9
  - merge
10
 
11
  ---
12
+ # Chat Template
13
+
14
+ ChatML
15
+
16
+ ```
17
+ <|im_start|>system
18
+ {system_prompt}<|im_end|>
19
+ <|im_start|>user
20
+ {prompt}<|im_end|>
21
+ <|im_start|>assistant
22
+ ```
23
+
24
+ ```
25
+ {{ if .System }}<|im_start|>system
26
+ {{ .System }}<|im_end|>
27
+ {{ end }}{{ if .Prompt }}<|im_start|>user
28
+ {{ .Prompt }}<|im_end|>
29
+ {{ end }}<|im_start|>assistant
30
+ {{ .Response }}{{ if .Response }}<|im_end|>{{ end }}
31
+ ```
32
+
33
  # GGUF
34
 
35
  Thank you [mradermacher](https://huggingface.co/mradermacher) for creating the GGUF versions of this model.