agentcarousel 0.5.6

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
use thiserror::Error;

/// Errors surfaced by core parsing or validation helpers.
#[derive(Debug, Error)]
pub enum CoreError {
    #[error("invalid fixture: {0}")]
    InvalidFixture(String),
}