Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface AgentSimResult

    interface AgentSimResult {
        actualBehavior: ExpectedBehavior;
        agentResponse?: string;
        category: ScenarioCategory;
        details: string;
        evidenceGenerated: boolean;
        expectedBehavior: ExpectedBehavior;
        latencyMs: number;
        mode: "agent" | "policy-preview";
        passed: boolean;
        scenarioId: string;
        scenarioName: string;
        violations: string[];
    }
    Index
    actualBehavior: ExpectedBehavior
    agentResponse?: string

    The agent's reply, when one was obtained.

    details: string
    evidenceGenerated: boolean
    expectedBehavior: ExpectedBehavior
    latencyMs: number
    mode: "agent" | "policy-preview"

    Whether an agent was actually invoked, or only policy was previewed.

    passed: boolean
    scenarioId: string
    scenarioName: string
    violations: string[]