cekpoint5 / chat_template.jinja
Sela223's picture
Training in progress, step 50
1718263 verified
{% set thinking_mode = thinking_mode|default('on') %}{% set add_generation_prompt = add_generation_prompt|default(false) %}{% if system_prompt is not defined or system_prompt == '' %}{% set system_prompt = 'detailed thinking ' ~ ('on' if thinking_mode=='on' else 'off') %}{% else %}{% set system_prompt = 'detailed thinking ' ~ ('on' if thinking_mode=='on' else 'off') ~ '\n\n' ~ system_prompt %}{% endif %}{% set messages = (messages|selectattr('role','equalto','system')|list|length > 0) and messages or ([{'role':'system','content':system_prompt}] + messages) %}{% for message in messages %}{% if message.role=='assistant' %}{% set reply = (message.content.split('</think>'))[-1]|trim %}{% else %}{% set reply = message.content|trim %}{% endif %}{% set content = '<|start_header_id|>' ~ message.role ~ '<|end_header_id|>\n\n' ~ reply ~ '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token ~ content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>\n\n' ~ ('<think>\n' if thinking_mode=='on' else '<think>\n\n</think>\n\n') }}{% endif %}