objectiveai-sdk 2.0.6

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Non-streaming agent completion response types.
//!
//! These types are used when `stream: false` or when streaming responses
//! are accumulated into a final result.

mod agent_completion;
mod assistant_response;
mod message;
mod object;

pub use agent_completion::*;
pub use assistant_response::*;
pub use message::*;
pub use object::*;