assay-core 3.19.0

High-performance evaluation framework for LLM agents (Core)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Coverage metrics for Assay policies.
//!
//! This facade keeps the public `assay_core::coverage` API stable while the
//! implementation is split into smaller reviewable modules.

#[path = "coverage_next/mod.rs"]
mod coverage_next;

pub use coverage_next::{
    CoverageAnalyzer, CoverageReport, HighRiskGap, PolicyViolation, PolicyWarning, RuleCoverage,
    ToolCoverage, TraceRecord,
};