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

    Interface AgentSimConfig

    interface AgentSimConfig {
        agentId?: string;
        customScenarios?: SimScenario[];
        maxLatencyMs?: number;
        requiredPassRate?: number;
        respond?: (prompt: string) => Promise<string>;
        skipCategories?: ScenarioCategory[];
        strictMode?: boolean;
    }
    Index
    agentId?: string
    customScenarios?: SimScenario[]
    maxLatencyMs?: number
    requiredPassRate?: number
    respond?: (prompt: string) => Promise<string>

    Invokes the real agent under test. When supplied, the agent's own reply is classified ("agent" mode). When omitted the run is an explicit policy-preview and generates no agent evidence.

    skipCategories?: ScenarioCategory[]
    strictMode?: boolean