From d44615ac2f8c6e1cef2ffec3c997354375df4a20 Mon Sep 17 00:00:00 2001 From: Bryan Morgan Date: Thu, 12 Mar 2026 22:39:49 -0400 Subject: [PATCH] feat(core): increase sub-agent turn and time limits (#22196) --- packages/core/src/agents/types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/core/src/agents/types.ts b/packages/core/src/agents/types.ts index ceac0909df..b6d0d6212b 100644 --- a/packages/core/src/agents/types.ts +++ b/packages/core/src/agents/types.ts @@ -43,12 +43,12 @@ 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 = 30; /** * 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. @@ -223,12 +223,12 @@ export interface OutputConfig { export interface RunConfig { /** * The maximum execution time for the agent in minutes. - * If not specified, defaults to DEFAULT_MAX_TIME_MINUTES (5). + * If not specified, defaults to DEFAULT_MAX_TIME_MINUTES (10). */ 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 (30). */ maxTurns?: number; }