Skip to main content

objectiveai_sdk/functions/executions/response/
mod.rs

1//! Response types for function executions.
2//!
3//! - [`unary`] - Complete (non-streaming) responses
4//! - [`streaming`] - Incremental chunk-based responses
5
6mod output;
7pub mod streaming;
8pub mod unary;
9
10pub use output::*;