| 250 | // --------------------------------------------------------------------------- |
| 251 | |
| 252 | interface MergedModel { |
| 253 | name: string; |
| 254 | family?: string; |
| 255 | attachment: boolean; |
| 256 | reasoning: boolean; |
| 257 | tool_call: boolean; |
| 258 | structured_output?: boolean; |
| 259 | temperature: boolean; |
| 260 | knowledge?: string; |
| 261 | release_date: string; |
| 262 | last_updated: string; |
| 263 | open_weights: boolean; |
| 264 | interleaved?: boolean | { field: string }; |
| 265 | status?: string; |
| 266 | cost?: { |
| 267 | input: number; |
| 268 | output: number; |
| 269 | cache_read?: number; |
| 270 | cache_write?: number; |
| 271 | context_over_200k?: { |
| 272 | input: number; |
| 273 | output: number; |
| 274 | cache_read?: number; |
| 275 | cache_write?: number; |
| 276 | context_min?: number; |
| 277 | }; |
| 278 | }; |
| 279 | limit: { |
| 280 | context: number; |
| 281 | output: number; |
| 282 | }; |
| 283 | modalities: { |
| 284 | input: string[]; |
| 285 | output: string[]; |
| 286 | }; |
| 287 | } |
| 288 | |
| 289 | // --------------------------------------------------------------------------- |
| 290 | // Helpers |
nothing calls this directly
no outgoing calls
no test coverage detected