Lune-Mamba-3B-v1 / chat_template.jinja
Fizzarolli's picture
Upload folder using huggingface_hub
9a9145b verified
raw
history blame contribute delete
279 Bytes
{%- for message in messages -%}
{{- '<|start_of_role|>' + message['role'] + '<|end_of_role|>' + message['content'] + '<|end_of_text|>' -}}
{%- if loop.last and add_generation_prompt -%}
{{- '<|start_of_role|>assistant<|end_of_role|>' -}}
{%- endif -%}
{%- endfor -%}