objectiveai_api/functions/executions/mod.rs
1//! Function execution orchestration.
2//!
3//! Executes Functions by flattening them into task profiles and running
4//! the tasks (Vector Completions or nested Functions) in parallel. Handles
5//! streaming output, retry tokens, and reasoning summaries.
6
7mod client;
8mod error;
9pub mod usage_handler;
10
11pub use client::*;
12pub use error::*;