chore(evolution): lower trigger thresholds to 6 turns / 10 min idle

This commit is contained in:
zhayujie
2026-06-09 15:22:38 +08:00
parent 8cb53e6129
commit 7c9ea62993
7 changed files with 18 additions and 15 deletions

View File

@@ -13,8 +13,8 @@ from typing import Any
# Defaults — conservative (see executor module docstring). Disabled by default
# until release; enable via ``self_evolution_enabled``.
DEFAULT_ENABLED = False
DEFAULT_IDLE_MINUTES = 15
DEFAULT_MIN_TURNS = 8
DEFAULT_IDLE_MINUTES = 10
DEFAULT_MIN_TURNS = 6
# Max review steps for the isolated evolution agent. Kept small (not exposed as
# config): the review is meant to be cheap and focused, not a long autonomous run.
DEFAULT_MAX_STEPS = 12