新增: 多 ReAct 执行骨架(PlanExecutor 运行时门控+DAG 进度组件) - PLAN_EXECUTION_ENABLED 改为 AtomicBool 运行时开关 - 新增 set/get_plan_execution IPC 前后端通路 - 新增 PlanProgress.vue 层状执行进度展示组件 - feature flag 默认关, 翻 true 后 process_tool_calls 可并行执行同层工具

This commit is contained in:
2026-07-01 12:59:37 +08:00
parent c89742cb9a
commit 91d80841ea
6 changed files with 160 additions and 7 deletions

View File

@@ -30,4 +30,14 @@ export const settingsApi = {
delete(key: string): Promise<boolean> {
return invoke<boolean>('settings_delete', { key })
},
/** 设置多 ReAct Plan 执行开关 */
setPlanExecution(enabled: boolean): Promise<void> {
return invoke<void>('set_plan_execution', { enabled })
},
/** 读取多 ReAct Plan 执行开关 */
getPlanExecution(): Promise<boolean> {
return invoke<boolean>('get_plan_execution')
},
}