Add chat_template
Browse files- tokenizer_config.json +2 -1
tokenizer_config.json
CHANGED
@@ -31,5 +31,6 @@
|
|
31 |
"normalized":true,
|
32 |
"rstrip":false,
|
33 |
"single_word":false
|
34 |
-
}
|
|
|
35 |
}
|
|
|
31 |
"normalized":true,
|
32 |
"rstrip":false,
|
33 |
"single_word":false
|
34 |
+
},
|
35 |
+
"chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}",
|
36 |
}
|