chore(planner): 临时禁用执行器调用

为了调试规划器流程的其他部分,暂时注释掉了对 `self.executor.execute(filtered_plan)` 的调用。
This commit is contained in:
minecraft1024a
2025-09-13 12:07:19 +08:00
parent f1c1a2081a
commit 490bf9e7cc

View File

@@ -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 []