matverest commited on
Commit
c288ca2
·
verified ·
1 Parent(s): 9c195e5

Update chat_template.jinja

Browse files
Files changed (1) hide show
  1. chat_template.jinja +3 -5
chat_template.jinja CHANGED
@@ -1,9 +1,7 @@
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:', 'Pick the correct option (A, B, C, or D)') -%}
9
  {{- "<|im_start|>system\n" ~ sys ~ "\n<|im_end|>\n" -}}
 
1
  {%- set sys =
2
+ "You are an expert in STEM multiple-choice questions.\n"
3
+ ~ "Pick the correct option: \" A\", \" B\", \" C\", or \" D\".\n"
4
+ ~ "After \"Answer:\" reply directly with that single token.\n"
 
 
5
  -%}
6
  {%- set usr = messages[0].content | replace('Answer:', 'Pick the correct option (A, B, C, or D)') -%}
7
  {{- "<|im_start|>system\n" ~ sys ~ "\n<|im_end|>\n" -}}