test_CPTlsft2 / chat_template.jinja
Ba2han's picture
Training in progress, step 2111
3489299 verified
Raw
History Blame Contribute Delete
313 Bytes
{% for message in messages %}{{'<|im_start|>' + message['role'] + '
' + message['content']}}{% if (loop.last and add_generation_prompt) or not loop.last %}{{ '<|im_end|>' + '
'}}{% endif %}{% endfor %}
{% if add_generation_prompt and messages[-1]['role'] != 'assistant' %}{{ '<|im_start|>assistant
' }}{% endif %}