-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement OpenAI July 2023 Updates #427
Conversation
Codecov Report
@@ Coverage Diff @@
## master #427 +/- ##
=======================================
Coverage 97.02% 97.02%
=======================================
Files 17 17
Lines 705 705
=======================================
Hits 684 684
Misses 15 15
Partials 6 6
|
completion.go
Outdated
GPT3Ada = "ada" | ||
GPT3Babbage = "babbage" | ||
// Deprecated: Will be shut down on January 04, 2024. Use davinci-002 instead. | ||
GPT3Davinci = "davinci" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, thank you for the PR. I've re-read OpenAI post and I think we might not need to warn about these non-numerated models:
Applications using the stable model names for base GPT-3 models (ada, babbage, curie, davinci) will automatically be upgraded to the new models listed above on January 4, 2024. The new models will also be accessible in the coming weeks for early testing by specifying the following model names in API calls: ada-002, babbage-002, curie-002, davinci-002.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sashabaranov Fixed it.
Thank you! 🙏🏻 |
Describe the change
Implement OpenAI July 2023 Updates
Issue: #425