From 1ad930cbd06197de93afdf5456138020787148b7 Mon Sep 17 00:00:00 2001 From: teknium1 Date: Mon, 2 Mar 2026 00:51:01 -0800 Subject: [PATCH] fix(delegate_tool): increase DEFAULT_MAX_ITERATIONS from 25 to 50 to enhance processing capabilities --- tools/delegate_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/delegate_tool.py b/tools/delegate_tool.py index c960cc36..115183a7 100644 --- a/tools/delegate_tool.py +++ b/tools/delegate_tool.py @@ -38,7 +38,7 @@ DELEGATE_BLOCKED_TOOLS = frozenset([ MAX_CONCURRENT_CHILDREN = 3 MAX_DEPTH = 2 # parent (0) -> child (1) -> grandchild rejected (2) -DEFAULT_MAX_ITERATIONS = 25 +DEFAULT_MAX_ITERATIONS = 50 DEFAULT_TOOLSETS = ["terminal", "file", "web"]