ospipe 0.1.0

OSpipe: RuVector-enhanced personal AI memory system integrating with Screenpipe
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Query routing and hybrid search.
//!
//! Provides intelligent query routing that selects the optimal search
//! backend (semantic, keyword, temporal, graph, or hybrid) based on
//! query characteristics.

pub mod enhanced;
pub mod hybrid;
pub mod mmr;
pub mod reranker;
pub mod router;

pub use enhanced::EnhancedSearch;
pub use hybrid::HybridSearch;
pub use mmr::MmrReranker;
pub use reranker::AttentionReranker;
pub use router::{QueryRoute, QueryRouter};