Has anyone run into an error such as this while trying to upload a file using openai.File.create for finetuning?
InvalidRequestError: This file is XXX bytes. You have only YYY left in your organization. Your total storage limit is ZZZ
Nevermind. I figured it out. I had to delete older files using
from openai import OpenAI
client = OpenAI()
client.files.delete("file-oaG6vwLtV3v3mWpvxexWDKxq")
That freed up space to upload new files for finetuning.
It was not documented anywhere that there was a limit or how to handle the error.
1 Like