But am receiving a “Error creating job: Model ft:gpt-3.5-turbo-0125:personal:gpt-tdd:9PZMlP3T is not available for fine-tuning or does not exist.” I get the same error when attempting to create a new fine-tuning job on the fine-tuned model in the OpenAI UI as well.
I have confirmed that “ft:gpt-3.5-turbo-0125:personal:gpt-tdd:9PZMlP3T” is in the reeturn result of client.models.list(), and the same fine-tuning implementation is working when I provide “gpt-3.5-turbo-0125” as the base model, but breaking when I use my fine-tuned model id.
Is there something specific I need to do to enable fine-tuning a fine-tuned model?
Strange, looking at the docs this should be possible.
How new is this fine tune? Maybe things need to update internally in their systems before it can be fine tuned again?
And you’ve confirmed that you can still use the model, correct? As in, if you try to make a request like chat completion with your fine tuned model it doesn’t throw any errors?
I tried using a legacy api key by creating one and replacing my OPENAI_API_KEY environment variable with it, but am unfortunately still getting the same error.
Error code: 400 - {'error': {'message': 'Model ft:gpt-3.5-turbo-0125:personal:gpt-tdd:9PZMlP3T is not available for fine-tuning or does not exist.', 'type': 'invalid_request_error', 'param': None, 'code': 'model_not_available'}}