pub enum InterventionKind {
InjectMessage {
text: String,
priority: InjectPriority,
},
Cancel {
reason: String,
},
PauseResume {
paused: bool,
},
UpdateBudget {
max_tokens: Option<u64>,
max_turns: Option<u32>,
},
RespondToApproval {
call_id: String,
decision: ApprovalDecision,
note: Option<String>,
},
}Expand description
The complete set of harness-neutral mid-run control primitives.
Exactly five primitives — the whole universal agent-control surface. Each is gated by the
harness’s advertised InterventionCapabilities. None is specific to any one harness:
Self::InjectMessage and Self::Cancel are universal; Self::PauseResume is the
standard suspend/resume any stepped agent loop can expose; Self::UpdateBudget maps onto
any harness with token/turn limits; Self::RespondToApproval maps onto any harness with a
tool-use / permission gate.
Variants§
InjectMessage
Inject an out-of-band user turn into the running agent (steer / redirect / add context).
SUBSUMES “steer”: steering is just an InjectPriority::Interrupt injection. There is no
separate Steer/Update variant in the neutral enum.
Fields
priority: InjectPriorityWhether to act now (Interrupt) or queue the turn (Normal).
Cancel
Stop the agent run (this run’s current execution).
This is an observability/control act and is DISTINCT from a workflow-visible cancel/signal, which stays on the engine’s replay-log paths and is NOT an intervention.
PauseResume
Suspend or resume the agent between steps.
Capability-gated: harnesses that cannot suspend mid-step advertise no support for it.
UpdateBudget
Adjust the run’s resource limits mid-flight.
Fields
RespondToApproval
Answer a pending tool-use / permission gate — human-in-the-loop approval of the agent’s next action.
Implementations§
Source§impl InterventionKind
impl InterventionKind
Sourcepub const fn primitive(&self) -> InterventionPrimitive
pub const fn primitive(&self) -> InterventionPrimitive
The neutral primitive this command belongs to.
Trait Implementations§
Source§impl Clone for InterventionKind
impl Clone for InterventionKind
Source§fn clone(&self) -> InterventionKind
fn clone(&self) -> InterventionKind
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for InterventionKind
impl Debug for InterventionKind
Source§impl<'de> Deserialize<'de> for InterventionKind
impl<'de> Deserialize<'de> for InterventionKind
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<InterventionKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InterventionKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
impl Eq for InterventionKind
Source§impl PartialEq for InterventionKind
impl PartialEq for InterventionKind
Source§impl Serialize for InterventionKind
impl Serialize for InterventionKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl StructuralPartialEq for InterventionKind
Source§impl TS for InterventionKind
impl TS for InterventionKind
Source§type WithoutGenerics = InterventionKind
type WithoutGenerics = InterventionKind
WithoutGenerics should just be Self.
If the type does have generic parameters, then all generic parameters must be replaced with
a dummy type, e.g ts_rs::Dummy or (). The only requirement for these dummy types is that
EXPORT_TO must be None. Read moreSource§type OptionInnerType = InterventionKind
type OptionInnerType = InterventionKind
std::option::Option<T>, then this associated type is set to T.
All other implementations of TS should set this type to Self instead.Source§fn docs() -> Option<String>
fn docs() -> Option<String>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§fn decl_concrete(cfg: &Config) -> String
fn decl_concrete(cfg: &Config) -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl(cfg: &Config) -> String
fn decl(cfg: &Config) -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline(cfg: &Config) -> String
fn inline(cfg: &Config) -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened(cfg: &Config) -> String
fn inline_flattened(cfg: &Config) -> String
Source§fn visit_generics(v: &mut impl TypeVisitor)where
InterventionKind: 'static,
fn visit_generics(v: &mut impl TypeVisitor)where
InterventionKind: 'static,
Source§fn output_path() -> Option<PathBuf>
fn output_path() -> Option<PathBuf>
T should be exported, relative to the output directory.
The returned path does not include any base directory. Read moreSource§fn visit_dependencies(v: &mut impl TypeVisitor)where
InterventionKind: 'static,
fn visit_dependencies(v: &mut impl TypeVisitor)where
InterventionKind: 'static,
Source§fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
Source§fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export_all. Read moreSource§fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export. Read more