初始化项目,由ModelHub XC社区提供模型
Model: ilkayO/Karga-2B-Thinking Source: Original Platform
This commit is contained in:
11
chat_template.jinja
Normal file
11
chat_template.jinja
Normal file
@@ -0,0 +1,11 @@
|
||||
{{ bos_token }}
|
||||
{% set default_system = "Adın Karga. Soruları mantıklı ve adım adım düşünerek yanıtla." %}
|
||||
{% if messages[0]['role'] != 'system' %}
|
||||
{{ '<|start_header_id|>system<|end_header_id|>\n\n' + default_system + '<|eot_id|>' }}
|
||||
{% 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<think>\n' }}
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user