| 67 | } |
| 68 | |
| 69 | interface LabEntry { |
| 70 | id: string; |
| 71 | name: string; |
| 72 | description?: string; |
| 73 | models: ModelEntry[]; |
| 74 | providerCount: number; |
| 75 | families: string[]; |
| 76 | lastReleased?: string; |
| 77 | lastUpdated?: string; |
| 78 | } |
| 79 | |
| 80 | interface SearchIndexItem { |
| 81 | type: "model" | "provider" | "lab"; |
nothing calls this directly
no outgoing calls
no test coverage detected