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
7
// crates/lc/src/vector_stores/mod.rs
//! Vector store implementations.
//!
//! Provides document vector storage and retrieval functionality.
//!
//! This module is a bridge that re-exports everything from the `lc-vector-stores` crate.
pub use lc_vector_stores::*;