APi is responding with "model": "gpt-3.5-turbo-0301",

I am doing a request using responseMarket = openai.ChatCompletion.create(
model=“gpt-3.5-turbo”,
messages=[

However, there is responding with “model”: “gpt-3.5-turbo-0301”, a version that is not updated

It was included in announcement for the latest update:

Applications using the stable model names (gpt-3.5-turbo, gpt-4, and gpt-4-32k) will automatically be upgraded to the new models listed above on June 27th.

Developers who need more time to transition can continue using the older models by specifying gpt-3.5-turbo-0301, gpt-4-0314, or gpt-4-32k-0314 in the ‘model’ parameter of their API request.

2 Likes

And How Can I target the latest version if default doesn’t work

Just change the “model” parameter. You have several to choose from:

gpt-3.5-turbo-0301
gpt-3.5-turbo-0613

1 Like