langchainrust 0.9.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/chains/mod.rs
//! Chain system for composing operations.
//!
//! Bridge module: all chain types are defined in the `lc-chains` crate.
//! This module re-exports them for backward compatibility.
pub use lc_chains::*;