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

Model: Shekswess/trlm-135m
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-12 20:42:16 +08:00
commit 3353d313bd
14 changed files with 49385 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. You are always reasoning so always use <think> </think> tags.<|im_end|>\n' }}
{% endif %}
{{ '<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>\n' }}
{% endfor %}
{% if add_generation_prompt %}
{{ '<|im_start|>assistant\n' }}
{% endif %}