CoolFace
Modelpublic

DataOrchestra/Orchestrator

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes934downloads
chat_template.jinja14 linesDownload Raw Back to root
1{%- if messages[0].role == 'system' %}2{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}3{%- endif %}4{%- for message in messages %}5    {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}6        {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}7    {%- elif message.role == "assistant" %}8        {{- '<|im_start|>assistant\n' + message.content + '<|im_end|>' + '\n' }}9    {%- endif %}10{%- endfor %}11{%- if add_generation_prompt %}12{{- '<|im_start|>assistant\n' }}13{%- endif %}14