Arize Phoenix TS
    Preparing search index...

    Object form of an evaluator result. Reuses the shared experiment ExperimentEvaluationResult shape (label / explanation / metadata) but widens score to also accept booleans, which the testing API stores as 1 / 0.

    interface EvaluationResultObject {
        explanation?: string | null;
        label?: string | null;
        metadata?: Record<string, unknown>;
        score?: number | boolean | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    explanation?: string | null
    label?: string | null
    metadata?: Record<string, unknown>
    score?: number | boolean | null

    Numeric or boolean score; booleans are stored as 1 / 0.