mathtrained / chat_template.jinja
BLR2's picture
Upload folder using huggingface_hub
b356bbd verified
Raw
History Blame Contribute Delete
214 Bytes
{%- for message in messages -%}
{{ "<|im_start|>" + message.role + "\n" + message.content.strip() + "<|im_end|>" }}
{%- endfor -%}
{%- if add_generation_prompt -%}
{{ "<|im_start|>assistant\n" }}
{%- endif -%}