Fix: resolve parameter error when using o3 models with official OpenAI API#26
Merged
codelion merged 2 commits intoalgorithmicsuperintelligence:mainfrom May 23, 2025
Merged
Conversation
Member
|
This looks good, can you just run |
Contributor
Author
|
I did. Thanks for your comment. |
shubham3-ucb
pushed a commit
to mert-cemri/autoevolve-dev
that referenced
this pull request
Nov 26, 2025
…nai-params Fix: resolve parameter error when using o3 models with official OpenAI API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This pull request fixes an API parameter error that occurred when using o-series models (such as o3) with the official OpenAI API endpoint.
Background
Previously, when calling the OpenAI API with o-series models, the following error was returned:
This was due to the use of the
max_tokensparameter, which is not supported by these models. Instead, the API expects themax_completion_tokensparameter.Fix Details
https://api.openai.com/v1.max_completion_tokensparameter instead ofmax_tokenswhen making the API call.temperatureandtop_pare omitted because the official OpenAI API does not support customizing these values for these models.Impact
This change ensures compatibility with the latest o-series models on the official OpenAI API, preventing 400 Bad Request errors due to unsupported parameters.
If you have any questions or need further clarification, please let me know. Thank you for reviewing this pull request!