()
| 589 | * Opt-out for the legacy Opus 4.0/4.1 → current Opus remap. |
| 590 | */ |
| 591 | export function isLegacyModelRemapEnabled(): boolean { |
| 592 | return !isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_LEGACY_MODEL_REMAP) |
| 593 | } |
| 594 | |
| 595 | export function modelDisplayString(model: ModelSetting): string { |
| 596 | if (model === null) { |
no test coverage detected