NickyNicky
commited on
Commit
•
e473186
1
Parent(s):
1613c07
Update tokenizer_config.json
Browse files- tokenizer_config.json +1 -1
tokenizer_config.json
CHANGED
@@ -56,7 +56,7 @@
|
|
56 |
"<end_of_turn>"
|
57 |
],
|
58 |
"bos_token": "<bos>",
|
59 |
-
"chat_template": "
|
60 |
"clean_up_tokenization_spaces": false,
|
61 |
"eos_token": "<eos>",
|
62 |
"legacy": null,
|
|
|
56 |
"<end_of_turn>"
|
57 |
],
|
58 |
"bos_token": "<bos>",
|
59 |
+
"chat_template": "{% for message in messages %}{% if message['role'] == 'system' %}{{ '<start_of_turn>system\n' + message['content'] | trim + '<end_of_turn>\n' }}{% elif message['role'] == 'user' %}{{ '<start_of_turn>user\n' + message['content'] | trim + '<end_of_turn>\n' }}{% elif message['role'] == 'model' %}{{ '<start_of_turn>model\n' + message['content'] | trim + '<end_of_turn>\n' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{'<start_of_turn>model\n'}}{% endif %}",
|
60 |
"clean_up_tokenization_spaces": false,
|
61 |
"eos_token": "<eos>",
|
62 |
"legacy": null,
|