objectiveai-sdk 2.0.6

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

pub mod streaming;
pub mod unary;
mod vote;

pub use vote::*;