semtree-rag 0.1.0

RAG pipeline: index, search, and context injection for LLMs
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod context;
mod error;
mod indexer;
mod registry;
mod search;

pub use context::{ContextBuilder, ContextSnippet, ContextWindow};
pub use error::RagError;
pub use indexer::Indexer;
pub use registry::ChunkRegistry;
pub use search::SearchEngine;