objectiveai 0.1.4

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Response types for vector completions.
//!
//! - [`unary`] - Complete (non-streaming) responses
//! - [`streaming`] - Incremental chunk-based responses
//! - [`Vote`] - Individual LLM vote data
//! - [`Usage`] - Aggregated token and cost statistics

pub mod streaming;
pub mod unary;
mod usage;
mod vote;

pub use usage::*;
pub use vote::*;