()
| 233 | } |
| 234 | |
| 235 | function getHaiku45Option(): ModelOption { |
| 236 | const is3P = getAPIProvider() !== 'firstParty' |
| 237 | return { |
| 238 | value: 'haiku', |
| 239 | label: 'Fast', |
| 240 | description: `Fast model · Fastest for quick answers${is3P ? '' : ` · ${formatModelPricing(COST_HAIKU_45)}`}`, |
| 241 | descriptionForModel: |
| 242 | 'Fast model - fastest for quick answers. Lower cost but less capable than the balanced model.', |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | function getHaiku35Option(): ModelOption { |
| 247 | const is3P = getAPIProvider() !== 'firstParty' |
no test coverage detected