langchain-rust 4.6.0

LangChain for Rust, the easiest way to write LLM-based programs in Rust
Documentation
pub mod agent;
pub use agent::*;

pub mod memory;
pub use memory::*;

pub mod messages;
pub use messages::*;

pub mod prompt;
pub use prompt::*;

pub mod document;
pub use document::*;

mod retrievers;
pub use retrievers::*;

mod tools_openai_like;
pub use tools_openai_like::*;

mod stream;
pub use stream::*;