prince-canuma commited on
Commit
a4e8d13
·
verified ·
1 Parent(s): 426138a

Upload chat_template.json

Browse files
Files changed (1) hide show
  1. chat_template.json +3 -0
chat_template.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "chat_template": "{% for message in messages %}{% if message['role'] == 'user' %}<|User|>:{% elif message['role'] == 'assistant' %}<|Assistant|>{% endif %} {{message['content']}}\n\n{% endfor %}{% if add_generation_prompt %}<|Assistant|>:{% endif %}"
3
+ }