without looking into it too much my guess is that it’s probably an outdated model being used in the requets. Teh default model used in the transformer is: text-davinci-003
I can’t see this listed in the available models on OpenAI’s API page. Try switching it out for ‘gpt-4o-mini’
Note: you should be able to look at the feature coming out of the rejected port for the response from OpenAI - that should give you more info
without looking into it too much my guess is that it’s probably an outdated model being used in the requets. Teh default model used in the transformer is: text-davinci-003
I can’t see this listed in the available models on OpenAI’s API page. Try switching it out for ‘gpt-4o-mini’
Note: you should be able to look at the feature coming out of the rejected port for the response from OpenAI - that should give you more info
ok yeah I just tested it and confirmed the issue:
{
"error": {
"message": "The model `text-davinci-003` has been deprecated, learn more here: https://platform.openai.com/docs/deprecations",
"type": "invalid_request_error",
"param": null,
"code": "model_not_found"
}
}
“gpt-4o-mini” works
Thanks @virtualcitymatt I have followed your suggestion and seems working,
I have also had to upgrade my OpenAI account and upgrade the plan as well as add some credtis to get it working,
cheers