assay-core 3.0.0

High-performance evaluation framework for LLM agents (Core)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Wave7C Step2 scaffold for judge split.
//!
//! Responsibility boundaries (to be enforced by reviewer gates):
//! - run.rs: orchestration/evaluate flow
//! - prompt.rs: prompt builders/constants only
//! - client.rs: judge call + response parse boundary
//! - cache.rs: cache/meta helpers only

pub(crate) mod cache;
pub(crate) mod client;
pub(crate) mod prompt;
pub(crate) mod run;

#[cfg(test)]
mod tests;