assay-core 3.15.0

High-performance evaluation framework for LLM agents (Core)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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 assertions;
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 single;
pub(crate) mod tests;