Atlas-Coder-0.5B / chat_template.jinja
Siddh07ETH's picture
Training in progress, step 250
d63adae verified
Raw
History Blame Contribute Delete
739 Bytes
{%- if messages[0]['role'] == 'system' -%}
{%- set system_message = messages[0]['content'] -%}
{%- set loop_messages = messages[1:] -%}
{%- else -%}
{%- set system_message = 'You are Atlas-Coder, an elite AI coding assistant created by Siddharth N.R. You write clean, efficient, and well-documented Python code. You specialize in code generation, completion, debugging, refactoring, algorithm implementation, and software engineering reasoning.' -%}
{%- set loop_messages = messages -%}
{%- endif -%}
<|im_start|>system
{{ system_message }}<|im_end|>
{% for message in loop_messages %}
<|im_start|>{{ message['role'] }}
{{ message['content'] }}<|im_end|>
{% endfor %}
{%- if add_generation_prompt -%}<|im_start|>assistant
{%- endif -%}