#Issue with gpt-3.5-turbo model getting 404s
11 messages · Page 1 of 1 (latest)
Yes, I'm having the exact same problem.
Sounds good - I submitted an inquiry on the help chat on the api site; perhaps it is just an issue from it being released recently for whatever reason. I was caught off guard since I had tried using the new version earlier and all was good but now it is giving the 404.
👍 Let me know if you make any progress. I've just implemented it in my program. text-davinci-003 works but not turbo.
Cool - yes davinci was working for me as well which is good! Sounds good.
Hi. In my experience, gpt-3.5-turbo is using a newer module call openai.createChatCompletion instead of openai.createCompletion. There are also a few other things you need to change in there, you might wanna check the latest API documentation for chat completion here: https://platform.openai.com/docs/api-reference/chat. Also don't forget to update your openai npm module npm install openai. Hope this helps!
An API for accessing new AI models developed by OpenAI
Thanks for this! Got mine working now.
I was previously calling: https://api.openai.com/v1/completions
Changing it to: https://api.openai.com/v1/chat/completions fixed it for me. @stray cobalt
You're welcome!
Yes thank you so much @eager cloak ! This is MattB from my other account.