fix(eval): raise contradiction judge token cap for thinking models (#3210)

This commit is contained in:
alexey-metaengage
2026-07-23 13:38:42 -07:00
committed by GitHub
parent 19c6b6ef67
commit 581a1eed29
+1 -1
View File
@@ -348,7 +348,7 @@ export async function judgeContradiction(input: JudgeInput): Promise<JudgeOutput
const result = await callFn({
model: input.model,
messages: [{ role: 'user', content: prompt }],
maxTokens: 200,
maxTokens: 1024,
abortSignal: input.abortSignal,
});
if (isRefusalResponse(result)) {