objectiveai 0.1.4

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

mod chat_completion;
mod choice;
mod message;
mod object;
mod tool_call;

pub use chat_completion::*;
pub use choice::*;
pub use message::*;
pub use object::*;
pub use tool_call::*;