A schema representing an evaluation run output item.

interface OutputItemRetrieveResponse {
    created_at: number;
    datasource_item: Record<string, unknown>;
    datasource_item_id: number;
    eval_id: string;
    id: string;
    object: "eval.run.output_item";
    results: Record<string, unknown>[];
    run_id: string;
    sample: OpenAIClient.Evals.Runs.OutputItems.OutputItemRetrieveResponse.Sample;
    status: string;
}

Properties

created_at: number

Unix timestamp (in seconds) when the evaluation run was created.

datasource_item: Record<string, unknown>

Details of the input data source item.

datasource_item_id: number

The identifier for the data source item.

eval_id: string

The identifier of the evaluation group.

id: string

Unique identifier for the evaluation run output item.

object: "eval.run.output_item"

The type of the object. Always "eval.run.output_item".

results: Record<string, unknown>[]

A list of results from the evaluation run.

run_id: string

The identifier of the evaluation run associated with this output item.

A sample containing the input and output of the evaluation run.

status: string

The status of the evaluation run.