langchain-rust-openrouter 4.6.0

LangChain for Rust with OpenRouter integration - unified access to 200+ LLM and embedding models
Documentation
mod error;

pub mod embedder_trait;
pub use embedder_trait::*;

#[cfg(feature = "ollama")]
pub mod ollama;
#[cfg(feature = "ollama")]
pub use ollama::*;

pub mod openai;
pub use error::*;

#[cfg(feature = "fastembed")]
mod fastembed;
#[cfg(feature = "fastembed")]
pub use fastembed::*;

#[cfg(feature = "mistralai")]
pub mod mistralai;
#[cfg(feature = "mistralai")]
pub use mistralai::*;

pub mod openrouter;
pub use openrouter::*;