I'm a bit confused, when I apply for GPT4 access, it says the following:
Thank you. You’ll hear from us soon! In the meantime, we encourage you to check out our previous best performing and cost effective model, gpt-3.5-turbo.
But, whenever I try to update my application to use 'gpt-3.5-turbo' instead of the current 'text-davinci-003' it breaks. It is listed here in the models https://platform.openai.com/docs/models/gpt-3-5 and says 'We recommend using gpt-3.5-turbo over the other GPT-3.5 models because of its lower cost." on that page so I'm a bit confused why it doesnt work?
response = openai.Completion.create(
engine="text-davinci-003",
prompt=prompt,
max_tokens= 1500,
n=1,
stop=None,
temperature=0.5,
)
Here is what my code looks like above, when I change it to gpt-3.5-turbo it breaks 😦
An API for accessing new AI models developed by OpenAI