Update README.md
Browse files
README.md
CHANGED
@@ -31,7 +31,7 @@ llama.cpp终端交互
|
|
31 |
```
|
32 |
**注意!!** llama.cpp并不支持自定义chat_template, 故而需要自己拼接prompt,Index-1.9B的chat_template(示意)为
|
33 |
```shell
|
34 |
-
# 三个分隔符为 <unk
|
35 |
[<unk>]sytem_message[reserved_0]user_message[reserved_1]response
|
36 |
```
|
37 |
使用llama-cpp-python可支持自定义的chat_template(已写入GGUF,可直接使用)
|
|
|
31 |
```
|
32 |
**注意!!** llama.cpp并不支持自定义chat_template, 故而需要自己拼接prompt,Index-1.9B的chat_template(示意)为
|
33 |
```shell
|
34 |
+
# 三个分隔符为 <unk>(token_id=0), reserved_0(token_id=3), reserved_1(token_id=4)
|
35 |
[<unk>]sytem_message[reserved_0]user_message[reserved_1]response
|
36 |
```
|
37 |
使用llama-cpp-python可支持自定义的chat_template(已写入GGUF,可直接使用)
|