laurus 0.10.0

Unified search library for lexical, vector, and semantic retrieval
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Vector search module for executing similarity searches on vector indexes.
//!
//! This module handles all vector search operations:
//! - Approximate and exact nearest neighbor search
//! - Search result processing and filtering
//!
//! Note: Distance metrics live in [`crate::vector::core::distance`] — the
//! `scoring` submodule that previously lived here was a parallel
//! similarity-metric / ranking API that no production caller invoked.

pub mod filter_set;
pub(crate) mod rerank;
pub mod searcher;