()
| 179 | } |
| 180 | |
| 181 | function getHaiku45Option(): ModelOption { |
| 182 | const is3P = getAPIProvider() !== 'firstParty' |
| 183 | return { |
| 184 | value: 'haiku', |
| 185 | label: 'Haiku', |
| 186 | description: `Haiku 4.5 · Fastest for quick answers${is3P ? '' : ` · ${formatModelPricing(COST_HAIKU_45)}`}`, |
| 187 | descriptionForModel: |
| 188 | 'Haiku 4.5 - fastest for quick answers. Lower cost but less capable than Sonnet 4.6.', |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | function getHaiku35Option(): ModelOption { |
| 193 | const is3P = getAPIProvider() !== 'firstParty' |
no test coverage detected