()
| 226 | } |
| 227 | |
| 228 | function getHaiku35Option(): ModelOption { |
| 229 | const is3P = getAPIProvider() !== 'firstParty' |
| 230 | return { |
| 231 | value: 'haiku', |
| 232 | label: 'Haiku', |
| 233 | description: `Haiku 3.5 for simple tasks${is3P ? '' : ` · ${formatModelPricing(COST_HAIKU_35)}`}`, |
| 234 | descriptionForModel: |
| 235 | 'Haiku 3.5 - faster and lower cost, but less capable than Sonnet. Use for simple tasks.', |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | function getHaikuOption(): ModelOption { |
| 240 | // Return correct Haiku option based on provider |
no test coverage detected