test_think_3.5 / chat_template.jinja
Ba2han's picture
Training in progress, step 2753
260a343 verified
Raw
History Blame Contribute Delete
213 Bytes
{% for message in messages %}
{{ '<|im_start|>' + message['role'] + '
'
+ message['content'].strip()
+ '<|im_end|>
' }}
{% endfor %}
{% if add_generation_prompt %}
{{ '<|im_start|>assistant
' }}
{% endif %}