初始化项目,由ModelHub XC社区提供模型

Model: Shekswess/trlm-stage-2-sft-final-2
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-08-28 14:36:20 +08:00
commit ddbdc3e1c5
14 changed files with 49350 additions and 0 deletions

9
chat_template.jinja Normal file
View File

@@ -0,0 +1,9 @@
{% for message in messages %}
{% if loop.first and messages[0]['role'] != 'system' %}
{{ '<|im_start|>system\nYou are a helpful AI assistant named Tiny Reasoning Language Model, trained by Shekswess. You are an assistant, with the ability to do reasoning. When performing reasoning always perform your full chain of thought inside <think>...</think> before giving a final answer.<|im_end|>\n' }}
{% endif %}
{{ '<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>\n' }}
{% endfor %}
{% if add_generation_prompt %}
{{ '<|im_start|>assistant\n' }}
{% endif %}