#Issue with gpt-3.5-turbo model getting 404s

11 messages · Page 1 of 1 (latest)

stray cobalt
#

Anyone else having issues with the new gpt-3.5-turbo model getting 404s in the past hour? Things were fine a couple hours ago, and I tried using other models with success just now, but all of the sudden the gpt-3.5-turbo is not working, giving a 404 not found.

hasty crystal
#

Yes, I'm having the exact same problem.

stray cobalt
#

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.

hasty crystal
#

👍 Let me know if you make any progress. I've just implemented it in my program. text-davinci-003 works but not turbo.

stray cobalt
#

Cool - yes davinci was working for me as well which is good! Sounds good.

eager cloak
#

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!

opaque copper
#

^^^

#

Thanks @eager cloak!

hasty crystal
eager cloak
#

You're welcome!

summer relic
#

Yes thank you so much @eager cloak ! This is MattB from my other account.