From 87ac43cdef2304dcd1d32c84d2f80cccdf45a060 Mon Sep 17 00:00:00 2001 From: Bryan Morgan Date: Sun, 22 Feb 2026 10:06:22 -0500 Subject: [PATCH] feat(core): increase sub-agent turn and time limits MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DEFAULT_MAX_TURNS 15→30, DEFAULT_MAX_TIME_MINUTES 5→10 to reduce timeouts on complex multi-step tasks. --- packages/core/src/agents/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/agents/types.ts b/packages/core/src/agents/types.ts index b9994d8b4a..2b83bbf908 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.