interface OutputItemListParams {
    after?: string;
    eval_id: string;
    limit?: number;
    order?: "asc" | "desc";
    status?: "fail" | "pass";
}

Hierarchy (view full)

Properties

after?: string
eval_id: string

Path param: The ID of the evaluation to retrieve runs for.

limit?: number
order?: "asc" | "desc"

Query param: Sort order for output items by timestamp. Use asc for ascending order or desc for descending order. Defaults to asc.

status?: "fail" | "pass"

Query param: Filter output items by status. Use failed to filter by failed output items or pass to filter by passed output items.