Skip to main content

Agent

Struct Agent 

Source
pub struct Agent { /* private fields */ }
Expand description

Stateful wrapper around the low-level agent loop.

Implementations§

Source§

impl Agent

Source

pub fn new(options: AgentOptions) -> Self

Source

pub fn subscribe(&self, listener: LoopListener) -> impl FnOnce()

Subscribe an async listener (segment 2 — await path). For persistence/I/O subscribers that need the cancellation token. Returns an unsubscribe closure.

For memory-only callbacks (<1µs), use Self::subscribe_sync. For external subscribers that want a broadcast tokio::sync::broadcast::Receiver, use Self::subscribe_broadcast.

Source

pub fn subscribe_sync(&self, callback: LoopSyncCallback) -> impl FnOnce()

Register a synchronous callback (segment 1 — catch_unwind path). The callback MUST complete in <1µs — no I/O, no blocking. Returns an unsubscribe closure.

Source

pub fn subscribe_broadcast(&self) -> Receiver<LoopEvent>

Obtain a new tokio::sync::broadcast::Receiver for the LoopEvent broadcast channel (segment 3). The receiver sees all events emitted after subscription.

Source

pub fn state(&self) -> MutexGuard<'_, AgentState>

Inspect the current agent state. The lock guards against concurrent loop mutations.

Source

pub fn is_streaming(&self) -> bool

Source

pub fn runtime_observer(&self) -> Arc<dyn RuntimeObserver>

Return the embedder-owned runtime observer used by this agent.

Source

pub fn observation_context(&self) -> ObservationContext

Return the content-safe correlation context inherited by this agent.

Source

pub fn active_run_operation(&self) -> Option<OperationId>

Return the current agent-run operation, if a prompt is active.

Source

pub fn enqueue_steering(&self, message: AgentMessage)

Source

pub fn enqueue_follow_up(&self, message: AgentMessage)

Source

pub fn abort(&self)

Abort the active run, if any. Subsequent calls are no-ops.

Source

pub fn interrupt(&self)

Interrupt the current turn: cancels the in-flight LLM call. The run ends unless a steering message is queued (then the next turn carries it).

Source

pub fn active_token(&self) -> Option<CancellationToken>

Active cancellation token while a run is in flight, otherwise None.

Source

pub async fn wait_until_idle(&self)

Wait until the active run has released admission and all awaited loop listeners have completed.

Source

pub async fn prompt(&self, message: AgentMessage) -> Result<(), AgentRunError>

Start a new prompt. Appends a user AgentMessage, runs the loop, awaits completion.

Source

pub async fn prompt_many( &self, messages: Vec<AgentMessage>, ) -> Result<(), AgentRunError>

Start a new prompt with a batch of messages.

Source

pub async fn continue_(&self) -> Result<(), AgentRunError>

Continue from the current transcript without appending new user messages.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Agent

§

impl !UnwindSafe for Agent

§

impl Freeze for Agent

§

impl Send for Agent

§

impl Sync for Agent

§

impl Unpin for Agent

§

impl UnsafeUnpin for Agent

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + 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: Sized + 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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

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