-
Notifications
You must be signed in to change notification settings - Fork 2.5k
chore: Update default OpenAI model to gpt-5-mini #10144
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
Pull Request Test Coverage Report for Build 19822905143Details
💛 - Coveralls |
mpangrazzi
left a comment
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.
Looks ok!
|
@vblagoje it still may be good to label this as a breaking change and in the release notes add an upgrade section. Btw when is the end of life of gpt-4o? |
|
@vblagoje FYI there was a (probably) fake tests. Re-running test "fixed" it. |
|
@sjrl @mpangrazzi I'll integrate this one now and then issue PR for Azure and finally huggingface, lmk if you have some objections |
be careful for the Azure one, it's possible that we may want to leave gpt-4o as default there since Azure prefers users to use the responses api to use gpt-5 |
Aha, ok, let's go with 4.1-mini there then? |
Why
Updates the default OpenAI model from
gpt-4o-minitogpt-5-minito use the latest model version by default.What
modelparameter inOpenAIChatGeneratorandOpenAIGeneratorfromgpt-4o-minitogpt-5-miniHow can it be used
The default model is now
gpt-5-miniwhen initializing OpenAI generators without specifying a model:How did you test it
gpt-5-minias the defaultNotes for the reviewer
This is a straightforward model update. All tests pass and the change is backward compatible - users can still specify any model explicitly.