models

Delete a model

Delete a model by name (the fine_tuned_model value or job id). Same effect as deleting the job; OpenAI Models-API parity.

delete/v1/models/{model}

Path parameters

modelstring required

A fine_tuned_model value, or the id of the job that produced it.

Example:support-classifier

Identifies the model to remove.

Response

Deletion confirmation for the model.

idstring required

The model that was deleted.

objectstring required

Always model on a deletion receipt.

deletedboolean required

True once the model is gone.

Example response

{
  "id": "support-classifier",
  "object": "model",
  "deleted": true
}

Changes