langsmith-rust 0.1.3

Rust crate for manual tracing to LangSmith, providing similar ergonomics to the Python and TypeScript SDKs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod tracer;
pub mod context;
pub mod decorator;
pub mod scope;
pub mod graph;

pub use tracer::Tracer;
pub use context::TraceContext;
pub use decorator::{trace_node, trace_node_sync};
pub use scope::RunScope;
pub use graph::GraphTrace;