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

Model: cs-552-2026-theattentionseekers/multilingual_model
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-23 13:11:01 +08:00
commit 1ae94097d0
11 changed files with 151754 additions and 0 deletions

9
chat_template.jinja Normal file
View File

@@ -0,0 +1,9 @@
{%- if messages[0]['role'] != 'system' -%}
{%- set messages = [{'role': 'system', 'content': 'You are solving a multiple-choice question that may be written in Italian, Spanish, Hindi, Chinese or Russian. Respond with exactly one LaTeX box like \\boxed{C} containing the letter of the single best option. Do not output any other text.'}] + messages -%}
{%- endif -%}
{%- for message in messages -%}
{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>\n'}}
{%- endfor -%}
{%- if add_generation_prompt -%}
{{'<|im_start|>assistant\n'}}
{%- endif -%}