Files
Llama-3.2-1B-glyph-translat…/chat_template.jinja
ModelHub XC 9c09db19c4 初始化项目,由ModelHub XC社区提供模型
Model: wimpSquad/Llama-3.2-1B-glyph-translator-v8
Source: Original Platform
2026-07-07 20:31:12 +08:00

12 lines
491 B
Django/Jinja

{{- bos_token }}
{%- if messages[0]['role'] == 'system' %}
{{- '<|start_header_id|>system<|end_header_id|>\n\n' + messages[0]['content'] | trim + '<|eot_id|>' }}
{%- set messages = messages[1:] %}
{%- endif %}
{%- for message in messages %}
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n' + message['content'] | trim + '<|eot_id|>' }}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
{%- endif %}