From 6e3dc29a486b423dd12cd73a0b86020067b76526 Mon Sep 17 00:00:00 2001 From: nanobot Date: Sat, 14 Feb 2026 10:30:08 +0000 Subject: [PATCH] Increase subagent max_iterations from 15 to 50 --- nanobot/agent/subagent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/agent/subagent.py b/nanobot/agent/subagent.py index 18a4b20..5561c90 100644 --- a/nanobot/agent/subagent.py +++ b/nanobot/agent/subagent.py @@ -121,7 +121,7 @@ class SubagentManager: ] # Run agent loop (limited iterations) - max_iterations = 15 + max_iterations = 50 iteration = 0 final_result: str | None = None