Feature Request
The model picker currently has a Sonnet [1M] option for the 1M context window, but there is no equivalent Opus [1M] option.
Claude Opus 4.6 supports a 1M token context window (via the --model claude-opus-4-6-20251101 flag or equivalent), but this isn't exposed in the UI.
Proposed Change
Add an Opus [1M] entry to CLAUDE_MODELS.OPTIONS in shared/modelConstants.js, similar to the existing Sonnet [1M]:
{ value: "opus[1m]", label: "Opus [1M]" }
Why
For large codebases or long conversations, Opus + 1M context is the most capable option. Right now users have to fall back to the CLI to use it.
Feature Request
The model picker currently has a
Sonnet [1M]option for the 1M context window, but there is no equivalentOpus [1M]option.Claude Opus 4.6 supports a 1M token context window (via the
--model claude-opus-4-6-20251101flag or equivalent), but this isn't exposed in the UI.Proposed Change
Add an
Opus [1M]entry toCLAUDE_MODELS.OPTIONSinshared/modelConstants.js, similar to the existingSonnet [1M]:Why
For large codebases or long conversations, Opus + 1M context is the most capable option. Right now users have to fall back to the CLI to use it.