feat(core): increase sub-agent turn and time limits

DEFAULT_MAX_TURNS 15→30, DEFAULT_MAX_TIME_MINUTES 5→10 to reduce
timeouts on complex multi-step tasks.
This commit is contained in:
Bryan Morgan
2026-02-22 10:06:22 -05:00
parent 8d8841150f
commit 6b695e3c64
+2 -2
View File
@@ -43,12 +43,12 @@ export const DEFAULT_QUERY_STRING = 'Get Started!';
/** /**
* The default maximum number of conversational turns for an agent. * The default maximum number of conversational turns for an agent.
*/ */
export const DEFAULT_MAX_TURNS = 15; export const DEFAULT_MAX_TURNS = 30;
/** /**
* The default maximum execution time for an agent in minutes. * The default maximum execution time for an agent in minutes.
*/ */
export const DEFAULT_MAX_TIME_MINUTES = 5; export const DEFAULT_MAX_TIME_MINUTES = 10;
/** /**
* Represents the validated input parameters passed to an agent upon invocation. * Represents the validated input parameters passed to an agent upon invocation.