Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.

DELETE /models/{model}

Path parameters

  • model string Required

    The model to delete

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string Required
    • deleted boolean Required
    • object string Required
DELETE /models/{model}
curl \
 --request DELETE 'https://api.openai.com/v1/models/ft:gpt-4o-mini:acemeco:suffix:abc123' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "string",
  "deleted": true,
  "object": "string"
}