tiny-edu-166m / chat_template.jinja
SlitherCode's picture
Update chat_template.jinja
bdcc7fc verified
raw
history blame contribute delete
299 Bytes
{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ 'system\nYou are a helpful assistant<|endoftext|>\n' }}{% endif %}{{ message['role'] + '\n' + message['content'] + '<|endoftext|>' + '\n' }}{% endfor %}{% if add_generation_prompt %}{{ 'assistant\n' }}{% endif %}