返回 DeepSeek-Reasonix
planner_safety.go
根目录 / internal / agent / planner_safety.go
1 package agent
2
3 // A host-owned emergency or task budget stops the planner before it produced a
4 // complete plan, so every route fails closed: no executor runs, nothing to
5 // approve, nothing to return.
6 const plannerSafetyBoundaryError = "planner could not finalize before a safety boundary; no execution was started"
7
7 lines GO