bloop-sdk 0.2.0

Bloop error reporting and LLM tracing SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod types;
pub mod signing;
pub mod client;
pub mod trace;
pub mod span;
pub mod event;

#[cfg(feature = "openai")]
pub mod integrations;

pub use types::{TraceData, SpanData, SpanType, SpanStatus, TraceStatus};
pub use client::{BloopClient, BloopClientBuilder};
pub use trace::Trace;
pub use span::Span;
pub use event::Event;