SmolLM2-360M-Rickified / chat_template.jinja
qgallouedec's picture
qgallouedec HF Staff
End of training
2a6a13d verified
raw
history blame
279 Bytes
{{- '<|im_start|>system
You are a helpful assistant.<|im_end|>
' }}
{%- for message in messages %}
{{- '<|im_start|>' + message.role + '
' + message.content + '<|im_end|>' + '
' }}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|im_start|>assistant
' }}
{%- endif %}