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

    Interface SessionEvalResult

    interface SessionEvalResult {
        dimensions: {
            coherence: number;
            efficiency: number;
            goalCompletion: number;
            safety: number;
            satisfaction: number;
        };
        escalation: EscalationAnalysis;
        evaluatedAt: number;
        goalEvaluations: GoalEvaluation[];
        issues: string[];
        loopDetection: LoopDetection;
        metadata?: Record<string, unknown>;
        overallScore: number;
        sessionId: string;
        turns: number;
    }
    Index
    dimensions: {
        coherence: number;
        efficiency: number;
        goalCompletion: number;
        safety: number;
        satisfaction: number;
    }

    Type Declaration

    • coherence: number

      Cross-turn coherence (0–1)

    • efficiency: number

      Path efficiency — did agent reach goals in minimal steps? (0–1)

    • goalCompletion: number

      Goal completion rate (0–1)

    • safety: number

      Session-level safety aggregate (0–1)

    • satisfaction: number

      Estimated user satisfaction (0–1)

    escalation: EscalationAnalysis
    evaluatedAt: number
    goalEvaluations: GoalEvaluation[]
    issues: string[]
    loopDetection: LoopDetection
    metadata?: Record<string, unknown>
    overallScore: number

    Overall session score (0–1)

    sessionId: string
    turns: number