langchainrust 0.2.10

A LangChain-inspired framework for building LLM applications in Rust. Supports OpenAI, Agents, Tools, Memory, Chains, RAG, BM25, Hybrid Retrieval, LangGraph, and native Function Calling.
1
2
3
4
5
6
7
8
9
10
// src/callbacks/handlers/mod.rs
//! Built-in callback handlers

mod stdout_handler;
mod langsmith_handler;
mod file_handler;

pub use stdout_handler::StdOutHandler;
pub use langsmith_handler::LangSmithHandler;
pub use file_handler::{FileCallbackHandler, LogFormat};