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

Model: songphucn7/PBoC-rrk-ctq-v1-epoch-2
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-08 16:36:00 +08:00
commit b44d83e3d1
8 changed files with 353 additions and 0 deletions

15
chat_template.jinja Normal file
View File

@@ -0,0 +1,15 @@
{%- set instruction = messages | selectattr("role", "eq", "system") | map(attribute="content") | first | default("Given a web search query, retrieve relevant passages that answer the query") -%}
{%- set query_text = messages | selectattr("role", "eq", "query") | map(attribute="content") | first -%}
{%- set document_text = messages | selectattr("role", "eq", "document") | map(attribute="content") | first -%}
<|im_start|>system
Judge whether the Document meets the requirements based on the Query and the Instruct provided. Note that the answer can only be "yes" or "no".<|im_end|>
<|im_start|>user
<Instruct>: {{ instruction }}
<Query>: {{ query_text }}
<Document>: {{ document_text }}<|im_end|>
<|im_start|>assistant
<think>
</think>