Skip to main content

objectiveai_api/vector/
mod.rs

1//! Vector completion operations.
2//!
3//! Vector completions produce scores rather than text. Multiple LLMs vote on
4//! response options, and their votes are combined using weights to produce
5//! final scores.
6
7/// Vector completion client and types.
8pub mod completions;