Update README.md
Browse files
README.md
CHANGED
@@ -15,7 +15,34 @@ tags:
|
|
15 |
- merge
|
16 |
|
17 |
---
|
18 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
|
21 |
|
|
|
15 |
- merge
|
16 |
|
17 |
---
|
18 |
+
# Chat Template
|
19 |
+
|
20 |
+
ChatML
|
21 |
+
|
22 |
+
```
|
23 |
+
<|im_start|>system
|
24 |
+
{system_prompt}<|im_end|>
|
25 |
+
<|im_start|>user
|
26 |
+
{prompt}<|im_end|>
|
27 |
+
<|im_start|>assistant
|
28 |
+
```
|
29 |
+
|
30 |
+
```
|
31 |
+
{{ if .System }}<|im_start|>system
|
32 |
+
{{ .System }}<|im_end|>
|
33 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
34 |
+
{{ .Prompt }}<|im_end|>
|
35 |
+
{{ end }}<|im_start|>assistant
|
36 |
+
{{ .Response }}{{ if .Response }}<|im_end|>{{ end }}
|
37 |
+
```
|
38 |
+
|
39 |
+
# GGUF
|
40 |
+
|
41 |
+
Thank you [mradermacher](https://huggingface.co/mradermacher) for creating the GGUF versions of this model.
|
42 |
+
|
43 |
+
* Static quants - [mradermacher/Qwen2.5-7B-Thai-Instruct-GGUF](https://huggingface.co/mradermacher/Qwen2.5-7B-Thai-Instruct-GGUF)
|
44 |
+
|
45 |
+
# MERGE
|
46 |
|
47 |
This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
|
48 |
|