🤖 fix: use effort param only for Claude Opus 4.5 #743
Merged
+244
−14
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.
Summary
The
effortparameter is a new feature specific to Claude Opus 4.5 for controlling how much computational work the model applies to each task. Other Anthropic models (Sonnet 4.5, Haiku 4.5, Opus 4.1, etc.) must continue to use thethinking.budgetTokensapproach for extended thinking.Changes
ANTHROPIC_EFFORTmapping tothinking.tsfor Opus 4.5's effort levelsbuildProviderOptionsto detect Opus 4.5 and use theeffortparametercalculateEffectiveMaxOutputTokensto skip budget adjustment for Opus 4.5 (effort-based models don't need this)sendMessage.reasoning.test.ts) for reasoning with both Sonnet 4.5 and Opus 4.5Testing
bun test src/common/utils/ai/providerOptions.test.tsmake test(1199 pass)TEST_INTEGRATION=1)Generated with
mux