mirror of https://github.com/buster-so/buster.git
increase max completion tokens
This commit is contained in:
parent
5b1c903f78
commit
f8fba4becd
|
@ -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({
|
||||
|
|
|
@ -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({
|
||||
|
|
Loading…
Reference in New Issue