Store chat template in its own file
#13
by
RaushanTurganbay
HF staff
- opened
- chat_template.json +3 -0
- tokenizer_config.json +0 -1
chat_template.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"chat_template": "{% set audio_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if 'audio' in content or 'audio_url' in content or message['type'] == 'audio' %}{% set audio_count.value = audio_count.value + 1 %}Audio {{ audio_count.value }}: <|audio_bos|><|AUDIO|><|audio_eos|>\n{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
|
3 |
+
}
|
tokenizer_config.json
CHANGED
@@ -29596,7 +29596,6 @@
|
|
29596 |
"<|nan|>"
|
29597 |
],
|
29598 |
"bos_token": null,
|
29599 |
-
"chat_template": "{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n' }}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
29600 |
"clean_up_tokenization_spaces": false,
|
29601 |
"eos_token": "<|im_end|>",
|
29602 |
"errors": "replace",
|
|
|
29596 |
"<|nan|>"
|
29597 |
],
|
29598 |
"bos_token": null,
|
|
|
29599 |
"clean_up_tokenization_spaces": false,
|
29600 |
"eos_token": "<|im_end|>",
|
29601 |
"errors": "replace",
|