From 6d1bfa8da94eb62cf9cc4f60e10f9263c8551d95 Mon Sep 17 00:00:00 2001 From: Christian Gunderman Date: Fri, 13 Feb 2026 13:52:39 -0800 Subject: [PATCH] Turns for days. --- 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..bb3c65e72b 100644 --- a/packages/core/src/agents/types.ts +++ b/packages/core/src/agents/types.ts @@ -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; }