[Feature]: Support options in model favorites #6782
khaneliman
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Before submitting
Area
apps/desktop
Problem or use case
When a user favorites a model (such as claude-opus-4-8 ) and sets custom options (like reasoning effort: "high" or contextWindow: "1m" ), these settings are stripped and not persisted.
favorites: Schema.Array(
Schema.Struct({
provider: ProviderInstanceId,
model: TrimmedNonEmptyString,
}),
)
Because of this, the server-side settings decoder strips any options block when loading client-settings.json .
Proposed solution
Update packages/contracts/src/settings.ts to include options in the favorites structures:
And update the frontend model picker selection handler to apply the options from the favorite object if present.
Why this matters
Selecting a model from the Favorites rail/combobox should restore the specific option selections (context window size, reasoning effort, thinking, etc.) saved with that favorite.
Smallest useful scope
Already small scope.
Alternatives considered
No response
Risks or tradeoffs
Realized that the app 'hides' the model from regular list selection once it's been favorited so I can kinda see why it might not have been implemented that way since then you're stuck with it at the options when it was favorited if that was the case.
Examples or references
No response
Contribution
All reactions