Fix: resolve parameter error when using o3 models with official OpenAI API #26
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!