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

    Interface PairwiseResult

    interface PairwiseResult {
        judgeId: string;
        judgePrompt: string;
        mode: "llm" | "simulated";
        model: string;
        reasoning: string;
        scoreA: number;
        scoreB: number;
        templateId: string;
        timestamp: number;
        winner: "a" | "b" | "tie";
    }
    Index
    judgeId: string
    judgePrompt: string
    mode: "llm" | "simulated"
    model: string
    reasoning: string
    scoreA: number

    Score for output A (0-1)

    scoreB: number

    Score for output B (0-1)

    templateId: string
    timestamp: number
    winner: "a" | "b" | "tie"

    Which output won: 'a', 'b', or 'tie'