rag-module 0.6.7

Enterprise RAG module with chat context storage, vector search, session management, and model downloading. Rust implementation with Node.js compatibility.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Database and vector store implementations

pub mod vector_store;
pub mod embedded_qdrant;
pub mod local_file_store;
pub mod qdrant_server;
pub mod dual_vector_store;
pub mod content_store;

pub use vector_store::VectorStore;
pub use embedded_qdrant::EmbeddedQdrantVectorStore;
pub use local_file_store::LocalFileVectorStore;
pub use qdrant_server::QdrantServerVectorStore;
pub use dual_vector_store::DualVectorStore;
pub use content_store::{ContentStore, ContentStoreStats};