()
| 265 | } |
| 266 | |
| 267 | function getHaiku35Option(): ModelOption { |
| 268 | const is3P = getAPIProvider() !== 'firstParty' |
| 269 | return { |
| 270 | value: 'haiku', |
| 271 | label: 'Haiku', |
| 272 | description: `Haiku 3.5 for simple tasks${is3P ? '' : ` · ${formatModelPricing(COST_HAIKU_35)}`}`, |
| 273 | descriptionForModel: |
| 274 | 'Haiku 3.5 - faster and lower cost, but less capable than Sonnet. Use for simple tasks.', |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | function getHaikuOption(): ModelOption { |
| 279 | // Return correct Haiku option based on provider |
no test coverage detected