Expand description
lev msg / lev cancel / lev pause / lev resume - control operations
on a running agent in the shared-world daemon.
Each sends a control request over the daemon socket and reports the boolean
outcome. The request/response cores are tested here; the socket-path
resolution + connect live in the binary behind crate::dispatch::RiskyExecutors.
Structs§
- Cancel
Args - Arguments for
lev cancel. - MsgArgs
- Arguments for
lev msg. - Pause
Args - Arguments for
lev pause. - Respond
Args - Arguments for
lev respond- answer a pendingask_userinteraction the daemon is holding, or (with norequest_id) list the open interactions. - Resume
Args - Arguments for
lev resume.
Functions§
- cancel_
run lev cancel: cancel a run.- pause_
run lev pause: park a run. The daemon refuses (ok: false) when the run does not exist or is not in a pausable state (waiting on input, or finished).- respond
lev respond: answer a pending interaction, or list open ones when norequest_idis given.- resume_
run lev resume: un-pause a run.- send_
message lev msg: deliver a message to a running agent.