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
11
12
13
14
15
#[allow(dead_code)]
#[derive(Debug, Clone, Copy)]
pub enum ExitCode {
    Ok = 0,
    Failed = 1,
    ValidationFailed = 2,
    ConfigError = 3,
    RuntimeError = 4,
}

impl ExitCode {
    pub fn as_i32(self) -> i32 {
        self as i32
    }
}