feat: 将内置子代理默认超时时间统一改为60分钟

- general 子代理: 20分钟 -> 60分钟
- explore 子代理: 10分钟 -> 60分钟

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
oudecheng 2026-05-25 12:59:34 +08:00
parent b3dc207ad1
commit c41c2a1d2e

View File

@ -50,8 +50,8 @@ impl Default for SubAgentRuntimeConfig {
"skill_list".to_string(), "skill_list".to_string(),
"send_session_message".to_string(), // 用于进度通知 "send_session_message".to_string(), // 用于进度通知
]), ]),
default_max_execution_secs: 1200, // 20分钟 default_max_execution_secs: 3600, // 60分钟
explore_max_execution_secs: 600, // 10分钟 explore_max_execution_secs: 3600, // 60分钟
ttl_hours: 24, ttl_hours: 24,
skills_index: None, skills_index: None,
} }