From e4d780b792a23b6f7e98b3f8067eee67f0acac3a Mon Sep 17 00:00:00 2001 From: root Date: Sun, 5 Apr 2026 15:36:55 +0200 Subject: [PATCH] Increase iteration budgets: quick=1000, standard=5000, deep=10000 Co-Authored-By: Claude Sonnet 4.6 --- strix/agents/StrixAgent/strix_agent.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/strix/agents/StrixAgent/strix_agent.py b/strix/agents/StrixAgent/strix_agent.py index c3abce97..ce63eaa6 100644 --- a/strix/agents/StrixAgent/strix_agent.py +++ b/strix/agents/StrixAgent/strix_agent.py @@ -7,13 +7,13 @@ from strix.llm.config import LLMConfig class StrixAgent(BaseAgent): # Default iterations per scan mode. Deep mode gets a large budget so the # phase gate system can run 4 full phases without hitting the iteration cap. - max_iterations = 1500 + max_iterations = 10000 # Map scan-mode names to iteration budgets and phase counts. _SCAN_MODE_CONFIGS: dict[str, dict] = { - "quick": {"max_iterations": 300, "max_phases": 2}, - "standard": {"max_iterations": 800, "max_phases": 3}, - "deep": {"max_iterations": 1500, "max_phases": 4}, + "quick": {"max_iterations": 1000, "max_phases": 2}, + "standard": {"max_iterations": 5000, "max_phases": 3}, + "deep": {"max_iterations": 10000, "max_phases": 4}, } def __init__(self, config: dict[str, Any]):