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

Model: IamMcCoy/siwon-mini-instruct-0626
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-09-10 08:36:18 +08:00
commit 5a3fb5793f
16 changed files with 201850 additions and 0 deletions

1
chat_template.jinja Normal file
View File

@@ -0,0 +1 @@
{% for message in messages %}{% if message['role'] == 'system' and 'tools' in message and message['tools'] is not none %}{{ '<|' + message['role'] + '|>' + message['content'] + '<|tool|>' + message['tools'] + '<|/tool|>' + '<|end|>' }}{% else %}{{ '<|' + message['role'] + '|>' + message['content'] + '<|end|>' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>' }}{% endif %}