qwenified / chat_template.jinja
typeof's picture
Upload folder using huggingface_hub
a94bf8f verified
{%- for message in messages %}
{{- '<|im_start|>' + message['role'] + '\n' }}
{{- message['content'] }}
{%- if message['role'] == 'user' and message.get('sources') %}
{%- for source in message['sources'] %}
{{- '\n\n<source_' + loop.index|string + '>' + source + '</source_' + loop.index|string + '>' }}
{%- endfor %}
{%- endif %}
{{- '<|im_end|>\n' }}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|im_start|>assistant\n' }}
{%- if disable_thinking %}
{{- '</think>\n' }}
{%- else %}
{{- '<think>\n' }}
{%- endif %}
{%- endif %}