//! # Lumen RAG Framework
//!
//! Lumen is a modular Retrieval-Augmented Generation framework for Rust.
//! It allows you to build RAG pipelines using interchangeable vector stores (MongoDB, Qdrant, SAP HANA Cloud).
//!
//! ## Example
//! ```rust,no_run
//! use lumen_rag::{VectorStore, types::Passage};
//! // Initialize a specific store (e.g. HanaStore) via feature flags
//! ```
pub use VectorStore;
pub use ;
pub use MongoStore;
pub use QdrantStore;
pub use HanaStore;