Arize Phoenix TS
    Preparing search index...

    The computed fields added to an AcceptanceCriterion once evaluated.

    interface AcceptanceResultFields {
        failureReason?: string;
        passed: boolean;
        sampleCount: number;
        value: number | null;
    }
    Index

    Properties

    failureReason?: string

    Human-readable failure reason for invalid or empty aggregates.

    passed: boolean

    Whether the aggregate cleared the criterion.

    sampleCount: number

    Number of runs included in the aggregate.

    value: number | null

    The aggregate the criterion gated on, or null when there were no runs to aggregate. For "average" this is the mean score; for "passRate" it is the fraction of runs that passed (so a fully-passing "passRate" criterion reports 1).