mirror of
https://github.com/usestrix/strix.git
synced 2026-09-22 00:31:25 +00:00
Increase iteration budgets: quick=1000, standard=5000, deep=10000
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
efa63b2000
commit
e4d780b792
1 changed files with 4 additions and 4 deletions
|
|
@ -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]):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue