| 40 | .strict(); |
| 41 | |
| 42 | interface ExistingModel { |
| 43 | base_model?: string; |
| 44 | base_model_omit?: string[]; |
| 45 | name?: string; |
| 46 | family?: string; |
| 47 | attachment?: boolean; |
| 48 | reasoning?: boolean; |
| 49 | tool_call?: boolean; |
| 50 | structured_output?: boolean; |
| 51 | temperature?: boolean; |
| 52 | knowledge?: string; |
| 53 | release_date?: string; |
| 54 | last_updated?: string; |
| 55 | open_weights?: boolean; |
| 56 | interleaved?: boolean | { field: string }; |
| 57 | status?: string; |
| 58 | cost?: { |
| 59 | input?: number; |
| 60 | output?: number; |
| 61 | cache_read?: number; |
| 62 | cache_write?: number; |
| 63 | }; |
| 64 | limit?: { |
| 65 | context?: number; |
| 66 | input?: number; |
| 67 | output?: number; |
| 68 | }; |
| 69 | modalities?: { |
| 70 | input?: string[]; |
| 71 | output?: string[]; |
| 72 | }; |
| 73 | } |
| 74 | |
| 75 | interface MergedModel { |
| 76 | base_model?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected