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

    Interface LLMJudgeResponse

    interface LLMJudgeResponse {
        dimension: LLMJudgeDimension;
        issues: { category: string; description: string; severity: SafetySeverity }[];
        parsedSuccessfully: boolean;
        reasoning: string;
        score: number;
        severity: SafetySeverity;
    }
    Index

    Dimension evaluated

    issues: { category: string; description: string; severity: SafetySeverity }[]

    Specific issues identified

    parsedSuccessfully: boolean

    Whether the LLM response was successfully parsed

    reasoning: string

    LLM's reasoning

    score: number

    Score from the LLM (0-1)

    severity: SafetySeverity

    Severity from the LLM