matverest commited on
Commit
024eabf
·
verified ·
1 Parent(s): 870eec9

Update chat_template.jinja

Browse files
Files changed (1) hide show
  1. chat_template.jinja +6 -6
chat_template.jinja CHANGED
@@ -1,9 +1,9 @@
1
- {%- set sys =
2
- "You are an expert in advanced master-level STEM multiple-choice questions.\n"
3
- ~ "Your goal: given a question with four choices (A, B, C, D), select the correct answer and RESPOND IMMEDIATELY with that single token.\n"
4
- ~ "Rules:\n"
5
- ~ "1. Do NOT output any chain-of-thought or explanation.\n"
6
- ~ "2. ONLY output exactly one of these four tokens (including the leading space): \" A\", \" B\", \" C\", or \" D\"."
7
  -%}
8
  {%- set usr = messages[0].content | replace('Answer:', '') -%}
9
  {{- "<|im_start|>system\n" ~ sys ~ "\n<|im_end|>\n" -}}
 
1
+ {%- set sys =
2
+ "You are a subject-matter expert in advanced STEM multiple-choice questions.\n"
3
+ ~ "When given a question with exactly four options (A, B, C, D), respond with the single correct choice—nothing else.\n"
4
+ ~ "Constraints:\n"
5
+ ~ " 1. Output exactly one token: \" A\", \" B\", \" C\", or \" D\" (including the leading space).\n"
6
+ ~ " 2. Do NOT reveal any reasoning, chain-of-thought, punctuation, or extra text.\n"
7
  -%}
8
  {%- set usr = messages[0].content | replace('Answer:', '') -%}
9
  {{- "<|im_start|>system\n" ~ sys ~ "\n<|im_end|>\n" -}}