( fastMode = false, )
| 301 | |
| 302 | // @[MODEL LAUNCH]: Update the default model description strings shown to users. |
| 303 | export function getClaudeAiUserDefaultModelDescription( |
| 304 | fastMode = false, |
| 305 | ): string { |
| 306 | if (isCodexSubscriber()) { |
| 307 | return 'GPT-5.3 Codex · Optimized for code generation and understanding' |
| 308 | } |
| 309 | if (isMaxSubscriber() || isTeamPremiumSubscriber()) { |
| 310 | if (isOpus1mMergeEnabled()) { |
| 311 | return `Opus 4.6 with 1M context · Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ''}` |
| 312 | } |
| 313 | return `Opus 4.6 · Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ''}` |
| 314 | } |
| 315 | return 'Sonnet 4.6 · Best for everyday tasks' |
| 316 | } |
| 317 | |
| 318 | export function renderDefaultModelSetting( |
| 319 | setting: ModelName | ModelAlias, |
no test coverage detected