()
| 244 | } |
| 245 | |
| 246 | function getHaiku35Option(): ModelOption { |
| 247 | const is3P = getAPIProvider() !== 'firstParty' |
| 248 | return { |
| 249 | value: 'haiku', |
| 250 | label: 'Fast', |
| 251 | description: `Fast model for simple tasks${is3P ? '' : ` · ${formatModelPricing(COST_HAIKU_35)}`}`, |
| 252 | descriptionForModel: |
| 253 | 'Fast model - lower cost, but less capable than the balanced model. Use for simple tasks.', |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | function getHaikuOption(): ModelOption { |
| 258 | // Return correct Haiku option based on provider |
no test coverage detected