Output Items
Manage and run evals in the OpenAI platform.
Get eval run output items
evals.runs.output_items.list(run_id, **kwargs) -> CursorPage<OutputItemListResponse { id, created_at, datasource_item, 7 more } >
GET/evals/{eval_id}/runs/{run_id}/output_items
Get an output item of an eval run
evals.runs.output_items.retrieve(output_item_id, **kwargs) -> OutputItemRetrieveResponse { id, created_at, datasource_item, 7 more }
GET/evals/{eval_id}/runs/{run_id}/output_items/{output_item_id}
ModelsExpand Collapse
class OutputItemListResponse { id, created_at, datasource_item, 7 more } A schema representing an evaluation run output item.
class OutputItemListResponse { id, created_at, datasource_item, 7 more }
A schema representing an evaluation run output item.
sample: Sample{ error, finish_reason, input, 7 more}A sample containing the input and output of the evaluation run.
sample: Sample{ error, finish_reason, input, 7 more}
A sample containing the input and output of the evaluation run.
class OutputItemRetrieveResponse { id, created_at, datasource_item, 7 more } A schema representing an evaluation run output item.
class OutputItemRetrieveResponse { id, created_at, datasource_item, 7 more }
A schema representing an evaluation run output item.
sample: Sample{ error, finish_reason, input, 7 more}A sample containing the input and output of the evaluation run.
sample: Sample{ error, finish_reason, input, 7 more}
A sample containing the input and output of the evaluation run.