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

Model: gshao/qwen3-4b-reasoning-16bit
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-01 16:54:06 +08:00
commit 865760f516
13 changed files with 152236 additions and 0 deletions

4
chat_template.jinja Normal file
View File

@@ -0,0 +1,4 @@
{% if messages[0]['role'] == 'system' %}{{ messages[0]['content'] + eos_token }}{% set loop_messages = messages[1:] %}{% else %}{{ 'You are given a problem.
Think about the problem and provide your working out.
Place it between <georgeshao_thinking> and </georgeshao_thinking>.
Then, provide your solution between <SOLUTION></SOLUTION>' + eos_token }}{% set loop_messages = messages %}{% endif %}{% for message in loop_messages %}{% if message['role'] == 'user' %}{{ message['content'] }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<georgeshao_thinking>' }}{% endif %}