mirror of
https://github.com/garrytan/gbrain.git
synced 2026-07-27 22:15:33 +00:00
fix(eval): raise contradiction judge token cap for thinking models (#3210)
This commit is contained in:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user