mirror of https://github.com/buster-so/buster.git
Merge pull request #770 from buster-so/staging
increase max completion tokens
This commit is contained in:
commit
73d68fa27f
|
@ -118,7 +118,7 @@ export function createAnalystAgent(analystAgentOptions: AnalystAgentOptions) {
|
||||||
messages: [systemMessage, datasetsSystemMessage, ...messages],
|
messages: [systemMessage, datasetsSystemMessage, ...messages],
|
||||||
stopWhen: STOP_CONDITIONS,
|
stopWhen: STOP_CONDITIONS,
|
||||||
toolChoice: 'required',
|
toolChoice: 'required',
|
||||||
maxOutputTokens: 10000,
|
maxOutputTokens: 25000,
|
||||||
temperature: 0,
|
temperature: 0,
|
||||||
experimental_repairToolCall: async (repairContext) => {
|
experimental_repairToolCall: async (repairContext) => {
|
||||||
return repairToolCall({
|
return repairToolCall({
|
||||||
|
|
|
@ -151,7 +151,7 @@ export function createThinkAndPrepAgent(thinkAndPrepAgentSchema: ThinkAndPrepAge
|
||||||
messages: [systemMessage, datasetsSystemMessage, ...messages],
|
messages: [systemMessage, datasetsSystemMessage, ...messages],
|
||||||
stopWhen: STOP_CONDITIONS,
|
stopWhen: STOP_CONDITIONS,
|
||||||
toolChoice: 'required',
|
toolChoice: 'required',
|
||||||
maxOutputTokens: 10000,
|
maxOutputTokens: 25000,
|
||||||
temperature: 0,
|
temperature: 0,
|
||||||
experimental_repairToolCall: async (repairContext) => {
|
experimental_repairToolCall: async (repairContext) => {
|
||||||
return repairToolCall({
|
return repairToolCall({
|
||||||
|
|
Loading…
Reference in New Issue