Delete eval run
DELETEhttps:/api.openai.com/v1/evals/{eval_id}/runs/{run_id}
Delete an eval run.
Path parameters
eval_id
string
Required
The ID of the evaluation to delete the run from.run_id
string
Required
The ID of the run to delete.
Response
An object containing the status of the delete operation.
Example request
1 curl https://api.openai.com/v1/evals/eval_123abc/runs/evalrun_abc456 \2 -X DELETE \3 -H "Authorization: Bearer $OPENAI_API_KEY" \4 -H "Content-Type: application/json"
Example response
1 {2 "object": "eval.run.deleted",3 "deleted": true,4 "run_id": "evalrun_abc456"5 }
Built with