chore(planner): 临时禁用执行器调用
为了调试规划器流程的其他部分,暂时注释掉了对 `self.executor.execute(filtered_plan)` 的调用。
This commit is contained in:
@@ -72,8 +72,8 @@ class ActionPlanner:
|
||||
# 2. 筛选 Plan
|
||||
filtered_plan = await self.filter.filter(initial_plan)
|
||||
|
||||
# 3. 执行 Plan
|
||||
await self.executor.execute(filtered_plan)
|
||||
# 3. 执行 Plan(临时引爆因为它暂时还跑不了)
|
||||
#await self.executor.execute(filtered_plan)
|
||||
|
||||
# 4. 返回结果 (与旧版 planner 的返回值保持兼容)
|
||||
final_actions = filtered_plan.decided_actions or []
|
||||
|
||||
Reference in New Issue
Block a user