Skip to main content

nodedb_vector/rerank/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3pub mod codec;
4pub mod codecs;
5pub mod gating;
6pub mod pipeline;
7pub mod recall;
8pub mod sidecar;
9pub mod types;
10
11pub use codec::{CodecName, PreparedQuery, RerankCodec};
12pub use codecs::{BinaryRerank, Sq8Rerank};
13pub use gating::{IndexShape, validate_options};
14pub use pipeline::rerank;
15pub use recall::recall_scale;
16pub use sidecar::CodecSidecar;
17pub use types::{Candidate, Ranked, RerankError};