xz-rag 0.1.1

Multi-channel Retrieval-Augmented Generation engine
Documentation
1
2
3
4
5
6
7
8
9
10
/// Knowledge graph search channel.
pub mod graph;
/// Metadata-based search channel.
pub mod metadata;
/// Semantic vector search channel.
pub mod semantic;

/// BM25 full-text search channel.
#[cfg(feature = "bm25")]
pub mod bm25;