|
|
|
|
|
by fumeux_fume
14 days ago
|
|
This is a good pattern because it would allow all the models to "think" a bit before giving an answer even if they don't have reasoning or thinking turn on. Just make sure you have the reasoning output before the final answer. A mistake I see all the time is having the answer outputted first then the explanation after which leaves more room for models to rationalize bad answers. Good pattern: {"explanation": <short explanation for your answer>, "answer": <your final answer: true|false|i don't know>} Bad pattern: {"answer": <your answer here>, "explanation": <short explanation for your answer>} |
|