dd-trace
    Preparing search index...

    Interface ExperimentRun

    interface ExperimentRun {
        hasError: boolean;
        rows: ExperimentResultRow[];
        runId: string;
        runIteration: number;
        summaryEvaluations: Record<string, { error: string | null; value: any }>;
    }
    Index
    hasError: boolean

    Whether this run had a task, row-evaluator, or summary-evaluator error.

    runId: string
    runIteration: number

    1-based run iteration.

    summaryEvaluations: Record<string, { error: string | null; value: any }>