From 4d2ffce5b1b0533f862a1af98f6da0afe6f4ab29 Mon Sep 17 00:00:00 2001 From: Zhongkai Fu Date: Sat, 20 Dec 2025 02:35:01 -0800 Subject: [PATCH] Increase ask_ai max rounds --- tools/builtin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/builtin.py b/tools/builtin.py index 62137150..59526f50 100644 --- a/tools/builtin.py +++ b/tools/builtin.py @@ -278,7 +278,7 @@ def ask_ai( tool: List[Mapping[str, Any]] | None = None, model: str | None = None, max_tokens: int = 256, - max_rounds: int = 3, + max_rounds: int = 5, ) -> Dict[str, Any]: """LLM helper that can optionally call business tools and analyze results."""