langchain-rust-openrouter 4.6.0

LangChain for Rust with OpenRouter integration - unified access to 200+ LLM and embedding models
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::*;

pub mod response_format_openai_like;
pub use response_format_openai_like::*;

pub mod convert;
mod stream;

pub use stream::*;