()
| 190 | } |
| 191 | |
| 192 | function getHaiku35Option(): ModelOption { |
| 193 | const is3P = getAPIProvider() !== 'firstParty' |
| 194 | return { |
| 195 | value: 'haiku', |
| 196 | label: 'Haiku', |
| 197 | description: `Haiku 3.5 for simple tasks${is3P ? '' : ` · ${formatModelPricing(COST_HAIKU_35)}`}`, |
| 198 | descriptionForModel: |
| 199 | 'Haiku 3.5 - faster and lower cost, but less capable than Sonnet. Use for simple tasks.', |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | function getHaikuOption(): ModelOption { |
| 204 | // Return correct Haiku option based on provider |
no test coverage detected