//! # rusty-llm-jury
//!
//! A Rust library for estimating success rates when using LLM judges for evaluation.
//!
//! This library provides tools to estimate the true success rate of your system by
//! correcting for LLM judge bias using bootstrap confidence intervals.
pub use *;
pub use *;
pub use *;
/// Version of the library
pub const VERSION: &str = env!;
/// Default number of bootstrap iterations
pub const DEFAULT_BOOTSTRAP_ITERATIONS: usize = 20_000;
/// Default confidence level (95%)
pub const DEFAULT_CONFIDENCE_LEVEL: f64 = 0.95;