langchainrust 0.2.10

A LangChain-inspired framework for building LLM applications in Rust. Supports OpenAI, Agents, Tools, Memory, Chains, RAG, BM25, Hybrid Retrieval, LangGraph, and native Function Calling.
1
2
3
4
5
6
7
// tests/bm25/mod.rs
mod chunked;
mod rag;
mod llm_integration;
mod hybrid_rag;
mod unified_hybrid;
mod full_flow;