Skip to content

Delete eval run

DELETE/evals/{eval_id}/runs/{run_id}

Delete an eval run.

Path ParametersExpand Collapse
eval_id: string
run_id: string
ReturnsExpand Collapse
deleted: optional boolean
object: optional string
run_id: optional string

Delete eval run

curl https://api.openai.com/v1/evals/$EVAL_ID/runs/$RUN_ID \
    -X DELETE \
    -H "Authorization: Bearer $OPENAI_API_KEY"
{
  "deleted": true,
  "object": "eval.run.deleted",
  "run_id": "evalrun_677469f564d48190807532a852da3afb"
}
Returns Examples
{
  "deleted": true,
  "object": "eval.run.deleted",
  "run_id": "evalrun_677469f564d48190807532a852da3afb"
}