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

Model: iNeil77/SB-8B
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-03 01:06:15 +08:00
commit bb4c0ab621
16 changed files with 1667 additions and 0 deletions

6
chat_template.jinja Normal file
View File

@@ -0,0 +1,6 @@
{% set has_system = messages[0]['role'] == 'system' %}{% if not has_system %}{{ bos_token + 'system
You are an AI programming assistant, utilizing the Seed-Coder model, developed by ByteDance Seed, and you only answer questions related to computer science. For politically sensitive questions, security and privacy issues, and other non-computer science questions, you will refuse to answer.
' + eos_token }}{% endif %}{% for message in messages %}{{ bos_token + message['role'] + '
' + message['content'] | trim + eos_token }}{% endfor %}{% if add_generation_prompt %}{{ bos_token + 'assistant
'}}{% endif %}