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

@@ -253,8 +253,8 @@ available_setting = {
"knowledge": True, # whether to enable the knowledge base feature
# Self-evolution: review idle conversations to learn memory/skills. Flat keys.
"self_evolution_enabled": False, # switch to enable/disable self-evolution
"self_evolution_idle_minutes": 15, # idle time before a session is reviewed
"self_evolution_min_turns": 8, # min user turns (or context pressure) to trigger
"self_evolution_idle_minutes": 10, # idle time before a session is reviewed
"self_evolution_min_turns": 6, # min user turns (or context pressure) to trigger
"skill": {}, # Per-skill runtime config; nested keys flatten to SKILL_<NAME>_<KEY> env vars at startup
"mcp_servers": [], # MCP server list; each entry supports type "stdio" (local process) or "sse" (remote URL)
}