Skip to main content

ChatResponseHandle

Struct ChatResponseHandle 

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

Handle to a streaming chat response.

Created by AgentHandle::chat(). Provides independent channels for text tokens, thinking tokens, and tool-call events.

Each stream accessor can only be called once — subsequent calls return None because the underlying receiver has already been taken.

Implementations§

Source§

impl ChatResponseHandle

Source

pub const fn take_text_stream(&mut self) -> Option<Receiver<String>>

Take the text token receiver for token-by-token streaming.

Returns None if the receiver was already taken.

Source

pub const fn take_thought_stream(&mut self) -> Option<Receiver<String>>

Take the thinking token receiver.

Returns None if the receiver was already taken.

Source

pub const fn take_tool_call_stream(&mut self) -> Option<Receiver<ToolCallEvent>>

Take the tool call event receiver.

Returns None if the receiver was already taken.

Source

pub const fn take_step_stream(&mut self) -> Option<Receiver<Step>>

Take the raw step receiver.

Returns None if the receiver was already taken. Prefer receive_steps() for StreamExt-compatible usage.

Source

pub fn receive_steps(&mut self) -> Option<impl Stream<Item = Step>>

Take the step stream for consuming with StreamExt::next().

Returns None if the stream was already taken.

§Example
use agy_bridge::streaming;
use tokio_stream::StreamExt;

let (_writer, mut handle) = streaming::channel();
drop(_writer); // close the channel so the stream ends
let mut steps = handle.receive_steps().unwrap();
while let Some(step) = steps.next().await {
    println!("step: {:?}", step.step_type);
}
Source

pub fn receive_chunks(&mut self) -> Option<impl Stream<Item = StreamChunk>>

Take the unified chunk stream for consuming with StreamExt::next().

Returns None if the stream was already taken.

§Example
use agy_bridge::streaming::{self, StreamChunk};
use tokio_stream::StreamExt;

let (_writer, mut handle) = streaming::channel();
drop(_writer); // close the channel so the stream ends
let mut chunks = handle.receive_chunks().unwrap();
while let Some(chunk) = chunks.next().await {
    match chunk {
        StreamChunk::Text(t) => print!("{t}"),
        StreamChunk::Thought(t) => eprintln!("thought: {t}"),
        StreamChunk::ToolCall(tc) => eprintln!("tool: {}", tc.name),
        _ => {}
    }
}
Source

pub async fn text(self) -> Result<ChatResult, StreamError>

Drain the text stream and return the complete response text.

Consumes the handle — use the take_* methods instead if you need to keep streaming individual channels.

§Errors

Returns a StreamError if the Python side reported an error.

Source

pub fn finalize(&mut self)

Finalize the response handle by pulling usage and structured output from the shared state. Called after the stream has been fully drained.

Source

pub const fn structured_output(&self) -> Option<&Value>

Return the structured output, if available.

Only populated when the agent was configured with a response_schema and the model returned a valid JSON payload.

Source

pub const fn usage_metadata(&self) -> Option<&UsageMetadata>

Return the token usage metadata, if available.

Populated after finalize() or text().

Source

pub async fn resolve(self) -> Vec<ResponseEvent>

Drain all events and return them as an ordered timeline.

Consumes the handle — use the take_* methods instead if you need to keep streaming individual channels.

Trait Implementations§

Source§

impl Debug for ChatResponseHandle

Source§

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

Formats the value using the given formatter. 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> 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, 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> Ungil for T
where T: Send,

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