fix(opencode): default custom provider capabilities to true for image…#26422
Open
RheagalFire wants to merge 2 commits intoanomalyco:devfrom
Open
fix(opencode): default custom provider capabilities to true for image…#26422RheagalFire wants to merge 2 commits intoanomalyco:devfrom
RheagalFire wants to merge 2 commits intoanomalyco:devfrom
Conversation
Contributor
|
The following comment was made by an LLM, it may be inaccurate: Based on my search, I found one potentially related PR that addresses similar custom provider capability issues: Related PR:
The current PR (#26422) is a more comprehensive fix that addresses multiple capability defaults ( These are related efforts but #25919 appears to be a narrower predecessor fix that handles temperature specifically, while the current PR provides a broader solution. |
This was referenced May 9, 2026
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.
Issue for this PR
Closes #22673
Type of change
What does this PR do?
Custom models added via config get restrictive capability defaults —
reasoning,attachment,temperature, andimageinput all default tofalse. This means models behind a LiteLLM proxy are classified astext-only even when they support images and reasoning.
The fix changes the fallback defaults in
provider.tsfor config-provided models:temperature:false→truereasoning:false→trueattachment:false→trueinput.image:false→trueThese only apply when no explicit value is set by the user or inherited from models.dev. Users can still set
falseexplicitly in their config.How did you verify your code works?
bun turbo typecheckpasses (12/12 packages)Checklist