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