objectiveai-api 2.0.5

ObjectiveAI API Server
1
2
3
4
5
6
7
8
9
10
11
//! Fetcher for votes from historical vector completions.
//!
//! Retrieves votes that were generated by actual LLM inference. Does not include
//! votes that came from the cache (`from_cache`), but does include votes from
//! previous retries.

mod fetcher;
mod objectiveai;

pub use fetcher::*;
pub use objectiveai::*;