lc-callbacks 0.11.0

Callback and tracing infrastructure for langchainrust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// lc-callbacks/src/handlers/mod.rs
//! Built-in callback handlers

mod file_handler;
mod langsmith_handler;
mod stdout_handler;

#[cfg(feature = "opentelemetry")]
mod otel_handler;

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

#[cfg(feature = "opentelemetry")]
pub use otel_handler::OtelHandler;