langchainrust 0.22.0

A LangChain-inspired framework for building LLM applications in Rust. Supports OpenAI, Agents, Tools, Memory, Chains, RAG, BM25, Hybrid Retrieval, LangGraph, HyDE, Reranking, MultiQuery, and native Function Calling.
1
2
3
4
5
6
// crates/lc/src/sessions/mod.rs
//! Sessions — re-export from lc-sessions crate
// The legacy SessionManager is deprecated in favor of the events API but
// remains fully functional until 0.23.0.
#[allow(deprecated)]
pub use lc_sessions::*;