langchain-rust 4.6.0

LangChain for Rust, the easiest way to write LLM-based programs in Rust
Documentation
mod options;

#[cfg(feature = "postgres")]
pub mod pgvector;

#[cfg(feature = "sqlite")]
pub mod sqlite_vss;

#[cfg(feature = "surrealdb")]
pub mod surrealdb;

#[cfg(feature = "opensearch")]
pub mod opensearch;

#[cfg(feature = "qdrant")]
pub mod qdrant;

mod vectorstore;

pub use options::*;
pub use vectorstore::*;