Merge pull request #770 from buster-so/staging

increase max completion tokens
This commit is contained in:
dal 2025-08-26 11:24:35 -06:00 committed by GitHub
commit 73d68fa27f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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({