microsoft / semantic-kernel

Integrate cutting-edge LLM technology quickly and easily into your apps
https://aka.ms/semantic-kernel
MIT License
21.31k stars 3.13k forks source link

Update examples and notebooks to stop using text-davinci-003 #1896

Closed gitri-ms closed 1 year ago

gitri-ms commented 1 year ago

Several of our kernel examples and notebooks still use text-davinci-003, which is being retired by Azure OpenAI and is no longer supported for new deployments. We should update these to use a more current model.

sneha-afk commented 1 year ago

Would you suggest migrating to gpt-3.5-turbo?

craigomatic commented 1 year ago

Would you suggest migrating to gpt-3.5-turbo?

For the samples, we will most likely move them to gpt-35-turbo as it's currently the lowest cost and most available model.

gpt-35-turbo is likely a good option for your solutions also. If you are using any of the planners you may want to consider gpt4 if you have access to it, as it will typically result in better outcomes.

sneha-afk commented 1 year ago

According to OpenAI, the replacement for the models that served the v1/completions endpoint like the davinci text completion models will be gpt-3.5-turbo-instruct, which has not yet been released.

glahaye commented 1 year ago

PR for this: #2307

glahaye commented 1 year ago

Closed with PR #2307