agentcarousel 0.5.7

Unit tests for AI agents. Run behavioral tests in CI, score with an LLM judge, and export signed evidence your auditors accept.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Fixture **I/O** and **validation**: load YAML/TOML into [`crate::FixtureFile`], validate
//! against the bundled JSON Schema, and resolve tool/LLM responses via [`MockEngine`].

mod loader;
mod mock;
mod schema;

pub use loader::{load_fixture, load_fixture_value, FixtureLoadError, FixtureSource};
pub use mock::{MockEngine, MockError, MockStub};
pub use schema::{validate_fixture_value, SchemaLocation, SchemaValidationIssue};