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

Model: Delentia/delentia-slm-jitna-v0.4
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-08-06 15:55:17 +08:00
commit 14fcab74b5
32 changed files with 5495 additions and 0 deletions

1
chat_template.jinja Normal file
View File

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