()
| 684 | * Opt-out for the legacy Opus 4.0/4.1 → current Opus remap. |
| 685 | */ |
| 686 | export function isLegacyModelRemapEnabled(): boolean { |
| 687 | return !isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_LEGACY_MODEL_REMAP) |
| 688 | } |
| 689 | |
| 690 | export function modelDisplayString(model: ModelSetting): string { |
| 691 | if (model === null) { |
no test coverage detected