Turns for days.

This commit is contained in:
Christian Gunderman
2026-02-13 13:52:39 -08:00
parent 56d4759d41
commit 6d1bfa8da9

View File

@@ -43,7 +43,7 @@ export const DEFAULT_QUERY_STRING = 'Get Started!';
/**
* The default maximum number of conversational turns for an agent.
*/
export const DEFAULT_MAX_TURNS = 15;
export const DEFAULT_MAX_TURNS = 50;
/**
* The default maximum execution time for an agent in minutes.
@@ -200,7 +200,7 @@ export interface RunConfig {
maxTimeMinutes?: number;
/**
* The maximum number of conversational turns.
* If not specified, defaults to DEFAULT_MAX_TURNS (15).
* If not specified, defaults to DEFAULT_MAX_TURNS (50).
*/
maxTurns?: number;
}