increase max completion tokens

This commit is contained in:
dal 2025-08-26 11:19:20 -06:00
parent 5b1c903f78
commit f8fba4becd
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ export function createAnalystAgent(analystAgentOptions: AnalystAgentOptions) {
messages: [systemMessage, datasetsSystemMessage, ...messages],
stopWhen: STOP_CONDITIONS,
toolChoice: 'required',
maxOutputTokens: 10000,
maxOutputTokens: 25000,
temperature: 0,
experimental_repairToolCall: async (repairContext) => {
return repairToolCall({

View File

@ -151,7 +151,7 @@ export function createThinkAndPrepAgent(thinkAndPrepAgentSchema: ThinkAndPrepAge
messages: [systemMessage, datasetsSystemMessage, ...messages],
stopWhen: STOP_CONDITIONS,
toolChoice: 'required',
maxOutputTokens: 10000,
maxOutputTokens: 25000,
temperature: 0,
experimental_repairToolCall: async (repairContext) => {
return repairToolCall({