()
| 550 | * Opt-out for the legacy Opus 4.0/4.1 → current Opus remap. |
| 551 | */ |
| 552 | export function isLegacyModelRemapEnabled(): boolean { |
| 553 | return !isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_LEGACY_MODEL_REMAP) |
| 554 | } |
| 555 | |
| 556 | export function modelDisplayString(model: ModelSetting): string { |
| 557 | if (model === null) { |
no test coverage detected