assay-core 3.9.1

High-performance evaluation framework for LLM agents (Core)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Step-2 split implementation modules for `engine::runner`.
//!
//! `src/engine/runner.rs` remains the stable facade; implementation blocks are
//! mechanically moved here.

pub(crate) mod baseline;
pub(crate) mod cache;
pub(crate) mod errors;
pub(crate) mod execute;
pub(crate) mod retry;
pub(crate) mod scoring;
pub(crate) mod tests;