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
// Utility functions and helpers

pub mod text_processing;
pub mod validation;
pub mod model_setup;

pub use text_processing::*;
pub use validation::*;
pub use model_setup::*;