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

Model: abuhussein1504/3ml-coach-llama-3.2-3b
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-25 16:24:20 +08:00
commit 5a1f6d48f5
10 changed files with 2463 additions and 0 deletions

9
chat_template.jinja Normal file
View File

@@ -0,0 +1,9 @@
{{ bos_token }}{% for message in messages %}{% if message['role'] == 'user' %}{{ '<|start_header_id|>user<|end_header_id|>
' + message['content'] | trim + '<|eot_id|>' }}{% elif message['role'] == 'assistant' %}{{ '<|start_header_id|>assistant<|end_header_id|>
' + message['content'] | trim + '<|eot_id|>' }}{% else %}{{ '<|start_header_id|>' + message['role'] + '<|end_header_id|>
' + message['content'] | trim + '<|eot_id|>' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>
' }}{% endif %}