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
17
//! Streaming chat completion response types.
//!
//! These types are used when `stream: true`. Responses arrive as
//! Server-Sent Events (SSE), with each chunk containing a delta
//! of the full response.

mod chat_completion_chunk;
mod choice;
mod delta;
mod object;
mod tool_call;

pub use chat_completion_chunk::*;
pub use choice::*;
pub use delta::*;
pub use object::*;
pub use tool_call::*;