(fastMode: boolean)
| 92 | * Get the cost tier for Opus 4.6 based on fast mode. |
| 93 | */ |
| 94 | export function getOpus46CostTier(fastMode: boolean): ModelCosts { |
| 95 | if (isFastModeEnabled() && fastMode) { |
| 96 | return COST_TIER_30_150 |
| 97 | } |
| 98 | return COST_TIER_5_25 |
| 99 | } |
| 100 | |
| 101 | // @[MODEL LAUNCH]: Add a pricing entry for the new model below. |
| 102 | // Costs from https://platform.claude.com/docs/en/about-claude/pricing |
no test coverage detected