laurus 0.4.1

Unified search library for lexical, vector, and semantic retrieval
1
2
3
4
5
6
7
8
9
10
//! Spelling correction and suggestion utilities for Laurus.
//!
//! This module powers typo tolerance across the lexical pipeline by providing
//! dictionary builders, edit-distance based correction, and "Did you mean?"
//! suggestion helpers that can be surfaced in UI flows or auto-correct logic.

pub mod corrector;
pub mod dictionary;
pub mod suggest;
pub mod typo_patterns;