objectiveai 0.1.4

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Unary (non-streaming) response types for vector completions.
//!
//! - [`VectorCompletion`] - Complete vector completion response
//! - [`ChatCompletion`] - Individual LLM completion
//! - [`Object`] - Type marker (`"vector.completion"`)

mod chat_completion;
mod object;
mod vector_completion;

pub use chat_completion::*;
pub use object::*;
pub use vector_completion::*;