nodedb-vector 0.3.0

Shared vector engine (HNSW index + distance functions) for NodeDB Origin and Lite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0

pub mod codec;
pub mod codecs;
pub mod gating;
pub mod pipeline;
pub mod recall;
pub mod sidecar;
pub mod types;

pub use codec::{CodecName, PreparedQuery, RerankCodec};
pub use codecs::{BinaryRerank, Sq8Rerank};
pub use gating::{IndexShape, validate_options};
pub use pipeline::rerank;
pub use recall::recall_scale;
pub use sidecar::CodecSidecar;
pub use types::{Candidate, Ranked, RerankError};