Skip to main content

assay_core/
lib.rs

1pub mod attachments;
2pub mod attempts;
3pub mod baseline;
4pub mod cache;
5pub mod calibration;
6pub mod config;
7pub mod coverage;
8pub mod embeddings;
9pub mod engine;
10pub mod errors;
11
12pub mod explain;
13pub mod fingerprint;
14pub mod judge;
15pub mod mcp;
16pub mod metrics_api;
17pub mod model;
18pub mod on_error;
19pub mod otel;
20pub mod policy_engine;
21pub mod providers;
22pub mod quarantine;
23pub mod redaction;
24pub mod render_safety;
25pub mod sequence_eval;
26
27pub mod doctor;
28pub mod validate;
29
30pub mod agent_assertions;
31
32pub mod agentic;
33pub mod fix;
34pub mod replay;
35pub mod report;
36pub mod runtime;
37pub mod storage;
38pub mod thresholds;
39pub mod trace;
40pub mod vcr;
41
42#[cfg(feature = "discovery")]
43pub mod discovery;
44#[cfg(feature = "kill-switch")]
45pub mod kill_switch;
46
47#[cfg(unix)]
48pub mod incident;