The result of running an experiment on a single example

interface ExperimentRun {
    datasetExampleId: string;
    endTime: Date;
    error: null | string;
    experimentId: string;
    id: string;
    output?: null | string | Record<string, unknown>;
    repetitionNumber: number;
    startTime: Date;
    traceId: null | string;
}

Hierarchy (View Summary)

Properties

datasetExampleId: string
endTime: Date
error: null | string
experimentId: string

What experiment the run belongs to

id: string
output?: null | string | Record<string, unknown>
repetitionNumber: number
startTime: Date
traceId: null | string