feat(core): 移除内置 Agent 的 maxSteps 限制,默认使用 Build 模式

- 移除 build/plan/general/explore 的 maxSteps 配置
- 内置 Agent 不再限制步数(与 OpenCode 保持一致)
- 用户自定义 Agent 仍可按需配置 maxSteps
- 新建 Agent 默认使用 Build 模式
This commit is contained in:
2025-12-15 22:27:42 +08:00
parent df811395f8
commit 013e9a2712
5 changed files with 5 additions and 4 deletions
-1
View File
@@ -189,5 +189,4 @@ export const planAgent: Omit<AgentInfo, 'name'> = {
model: {
temperature: 0.5,
},
maxSteps: 30, // 增加探索步数以支持更深入的调研
};