phi-1_5_coqa / chat_template.jinja
jahyungu's picture
Training in progress, epoch 1
d4992b5 verified
raw
history blame contribute delete
330 Bytes
{% for m in messages %}{% if m['role'] == 'system' %}System: {{ m['content'] }}
{% elif m['role'] == 'user' %}User: {{ m['content'] }}
{% elif m['role'] == 'assistant' %}Assistant: {{ m['content'] }}
{% elif m['role'] == 'tool' %}Tool: {{ m['content'] }}
{% endif %}{% endfor %}{% if add_generation_prompt %}Assistant: {% endif %}