How do you delete a finetune model?

How do you delete a finetune model (especially the failed ones)?
Is there a button I am missing in asssitants area?

Surely openai want us to clear space?

Hi there!

You can only delete a model via API.

Here’s what an example request looks like based on the API specs:

from openai import OpenAI
client = OpenAI()

client.models.delete("ft:gpt-4o-mini:acemeco:suffix:abc123")

Note that the list of fine-tuning jobs that you see in the fine-tuning UI will remain unchanged independent of the model deletion.

5 Likes