(fastMode: boolean)
| 305 | } |
| 306 | |
| 307 | export function getOpus46PricingSuffix(fastMode: boolean): string { |
| 308 | if (getAPIProvider() !== 'firstParty') return '' |
| 309 | const pricing = formatModelPricing(getOpus46CostTier(fastMode)) |
| 310 | const fastModeIndicator = fastMode ? ` (${LIGHTNING_BOLT})` : '' |
| 311 | return ` ·${fastModeIndicator} ${pricing}` |
| 312 | } |
| 313 | |
| 314 | export function isOpus1mMergeEnabled(): boolean { |
| 315 | if ( |
no test coverage detected