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
13
14
15
16
17
mod diagnostics;
mod effects;
mod fail_closed;
mod matcher;
mod precedence;

#[cfg(test)]
pub(in crate::mcp::policy) use diagnostics::parse_delegation_context;
pub(in crate::mcp::policy) use diagnostics::{apply_delegation_context, finalize_evaluation};
pub(in crate::mcp::policy) use effects::{
    apply_approval_required_obligation, apply_redact_args_obligation,
    apply_restrict_scope_obligation,
};
pub(in crate::mcp::policy) use fail_closed::{
    check_rate_limits, schema_violation_decision, tool_drift_decision, unconstrained_decision,
};
pub(in crate::mcp::policy) use precedence::{apply_allow_precedence, deny_match_decision};