objectiveai-api 2.0.5

ObjectiveAI API Server
1
2
3
4
5
6
7
8
9
10
11
12
//! Function execution orchestration.
//!
//! Executes Functions by flattening them into task profiles and running
//! the tasks (Vector Completions or nested Functions) in parallel. Handles
//! streaming output, retry tokens, and reasoning summaries.

mod client;
mod error;
pub mod usage_handler;

pub use client::*;
pub use error::*;