Skip to main content

langfuse/scoring/
mod.rs

1//! Score management with batched async flush.
2//!
3//! Provides [`manager::ScoreManager`] for creating scores and a background
4//! [`queue::BatchQueue`] that automatically flushes scores to the Langfuse API.
5
6pub mod manager;
7pub mod queue;