Skip to main content

StepEvent

Enum StepEvent 

Source
#[non_exhaustive]
pub enum StepEvent { AssistantText { text: String, step: usize, }, ToolCall { call: ToolCall, step: usize, }, Latency { step: usize, llm_ms: u64, }, ToolResult { id: String, name: String, output: String, step: usize, }, Usage { usage: TokenUsage, step: usize, }, PartialToken { text: String, step: usize, }, Compacted { removed: usize, kept: usize, summary_chars: usize, step: usize, }, Finished { reason: FinishReason, steps: usize, }, PlanProposed { plan_text: String, tool_calls: Vec<ToolCall>, }, PlanConfirmed, PlanRejected { reason: String, }, }

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

AssistantText

Model generated text without tool calls.

Emitted when the LLM produces a response. This is typically the final answer or intermediate reasoning. The text field contains the complete model response, and step indicates which iteration this occurred on.

Fields

§text: String
§step: usize
§

ToolCall

Model requested to execute a tool.

Emitted when the LLM calls a tool. Contains the tool name, ID, and arguments that will be executed. The call is dispatched to the registry after this event. Tool errors are reported via ToolResult events, not ToolCall failures.

Fields

§step: usize
§

Latency

Time taken for the LLM request (excluding tool execution).

Emitted after the model responds. Useful for measuring provider latency and diagnosing slow responses. llm_ms is in milliseconds.

Fields

§step: usize
§llm_ms: u64
§

ToolResult

Result of executing a tool call.

Emitted after a tool finishes executing. Contains the tool name, call ID, the output string (or error message), and the step number. This result is added to the transcript and sent back to the model for the next iteration. In case of tool error, the output will be the error message prefixed with “ERROR: “.

Fields

§name: String
§output: String
§step: usize
§

Usage

Token usage statistics from the LLM provider.

Emitted if the provider returns usage information (input tokens, output tokens). Accumulated across all steps for total usage. Useful for cost tracking and monitoring resource consumption.

Fields

§step: usize
§

PartialToken

Partial token from streaming response (if streaming enabled).

Only emitted if streaming is enabled. Contains a single token or partial chunk of the model’s response text. Allows UI layers to display real-time incremental updates to the model’s output without waiting for the entire response.

Fields

§text: String
§step: usize
§

Compacted

Transcript was compacted to fit size constraints.

Emitted when the transcript exceeds the max size and is automatically compacted. The removed field shows how many messages were summarized, kept shows how many remain, and summary_chars shows the size of the compaction summary added. This allows UI layers to notify users that older context has been summarized. Compaction only occurs if a Compactor is configured on the Agent.

Fields

§removed: usize
§kept: usize
§summary_chars: usize
§step: usize
§

Finished

Agent run completed.

Emitted as the final event. Indicates the run is done and why it stopped. reason explains the termination (no more tool calls, budget exceeded, stuck detection, etc.). steps shows how many iterations were executed. After this event, no more events will be emitted for this run.

Fields

§steps: usize
§

PlanProposed

Agent has produced a plan and is waiting for confirmation.

Fields

§plan_text: String

Human-readable plan description

§tool_calls: Vec<ToolCall>

The buffered tool calls

§

PlanConfirmed

Plan was confirmed, execution will proceed.

§

PlanRejected

Plan was rejected with a reason.

Fields

§reason: String

Trait Implementations§

Source§

impl Clone for StepEvent

Source§

fn clone(&self) -> StepEvent

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for StepEvent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for StepEvent

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for StepEvent

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,