phi-1_5_hendrycks_math / chat_template.jinja
jahyungu's picture
Training in progress, epoch 1
a205f64 verified
raw
history blame contribute delete
278 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 %}