Delete an eval

DELETEhttps:/api.openai.com/v1/evals/{eval_id}

Delete an evaluation.

Path parameters

  • eval_id
    string
    Required
    The ID of the evaluation to delete.

Response

A deletion confirmation object.

Example request
1
curl https://api.openai.com/v1/evals/eval_abc123 \
2
-X DELETE \
3
-H "Authorization: Bearer $OPENAI_API_KEY"
Example response
1
{
2
"object": "eval.deleted",
3
"deleted": true,
4
"eval_id": "eval_abc123"
5
}
Built with