feat(providers/openai): add ReasoningEffortXHigh constant - #186
Merged
andreynering merged 2 commits intoMar 25, 2026
Merged
andreynering merged 2 commits into
andreynering merged 2 commits into
Conversation
This was referenced Mar 24, 2026
OpenAI now supports "xhigh" reasoning effort for GPT-5.4 class models. Add the missing constant so consumers can reference it by name instead of hardcoding the string.
ibetitsmike
force-pushed
the
mike/openai-reasoning-effort-xhigh
branch
from
March 25, 2026 00:03
bd1c87e to
b503b28
Compare
ibetitsmike
added a commit
to coder/coder
that referenced
this pull request
Mar 25, 2026
## Summary Adds `xhigh` to the OpenAI reasoning effort normalizer so GPT-5.4 class models can use `reasoning_effort: xhigh` without it being silently dropped. ## Problem The SDK schema (`codersdk/chats.go`) already advertises `xhigh` as a valid `reasoning_effort` value, but the runtime normalizer in `chatprovider.go` only accepts `minimal|low|medium|high` for the OpenAI provider. When a user sets `xhigh`, `ReasoningEffortFromChat()` returns `nil` and the value never reaches the OpenAI API. ## Changes - **Fantasy dependency**: Updated `kylecarbs/fantasy` (cj/go1.25) which now includes the `ReasoningEffortXHigh` constant ([coder/fantasy#9](coder/fantasy#9)). - **`chatprovider.go`**: Adds `fantasyopenai.ReasoningEffortXHigh` to the OpenAI case in `ReasoningEffortFromChat()`. - **`chatprovider_test.go`**: Adds `OpenAIXHighEffort` test case. ## Upstream - [charmbracelet/fantasy#186](charmbracelet/fantasy#186)
andreynering
approved these changes
Mar 25, 2026
andreynering
left a comment
Member
There was a problem hiding this comment.
Thank you again @ibetitsmike!
I pushed a commit adding a few missing constants and the needed checks to make them work.
taigrr
pushed a commit
to taigrr/fantasy
that referenced
this pull request
Apr 20, 2026
…ort levels (charmbracelet#186) We were missing some "none", "minimal" and "xhigh" constants, for the `openai`, `openaicompat` and `openrouter` packages. Added the missing checks to ensure they work as well. Co-authored-by: Andrey Nering <andreynering@users.noreply.github.com>
taigrr
pushed a commit
to taigrr/fantasy
that referenced
this pull request
Apr 25, 2026
…ort levels (charmbracelet#186) We were missing some "none", "minimal" and "xhigh" constants, for the `openai`, `openaicompat` and `openrouter` packages. Added the missing checks to ensure they work as well. Co-authored-by: Andrey Nering <andreynering@users.noreply.github.com>
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.
OpenAI now supports
xhighreasoning effort for GPT-5.4 class models. This adds the missingReasoningEffortXHighconstant so downstream consumers can reference it by name.