upload chat_template.jinja
#2
by
noooop9527
- opened
- chat_template.jinja +11 -0
- config_sentence_transformers.json +6 -0
chat_template.jinja
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<|im_start|>system
|
| 2 |
+
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|>
|
| 3 |
+
<|im_start|>user
|
| 4 |
+
<Instruct>: {{ messages | selectattr("role", "eq", "system") | map(attribute="content") | first | default("Given a web search query, retrieve relevant passages that answer the query") }}
|
| 5 |
+
<Query>: {{ messages | selectattr("role", "eq", "query") | map(attribute="content") | first }}
|
| 6 |
+
<Document>: {{ messages | selectattr("role", "eq", "document") | map(attribute="content") | first }}<|im_end|>
|
| 7 |
+
<|im_start|>assistant
|
| 8 |
+
<think>
|
| 9 |
+
|
| 10 |
+
</think>
|
| 11 |
+
|
config_sentence_transformers.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "CrossEncoder",
|
| 3 |
+
"chat_template_path": "chat_template.jinja",
|
| 4 |
+
"classifier_from_tokens": ["no", "yes"],
|
| 5 |
+
"method": "from_2_way_softmax"
|
| 6 |
+
}
|