hyphae-retrieval 0.1.0

Exact provider-neutral vector retrieval with explicit abstention for Hyphae.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0

//! Exact retrieval and provider-neutral abstention semantics.
//!
//! The reference engine accepts vectors directly. No embedding or model
//! provider is enabled by default.

mod engine;
mod model;

pub use engine::{
    RetrievalClock, RetrievalError, RetrievalSystemClock, retrieve, retrieve_with_clock,
};
pub use model::{
    Abstention, AbstentionReason, RetrievalLimits, RetrievalMatch, RetrievalOutcome,
    RetrievalRequest, VectorRecord,
};