1//! Benchmark module - evaluates CodeTether across models using Ralph PRDs 2//! 3//! Runs standardized PRD-based benchmarks against multiple LLM models, 4//! capturing pass rates, timing, token usage, and cost metrics. 5 6mod runner; 7mod types; 8 9pub use runner::*; 10pub use types::*;