| 1 | type SortDirection = "asc" | "desc"; |
| 2 | |
| 3 | interface SearchIndexItem { |
| 4 | type: "model" | "provider" | "lab"; |
| 5 | title: string; |
| 6 | id: string; |
| 7 | href: string; |
| 8 | logo: string; |
| 9 | tokens: string[]; |
| 10 | lab?: string; |
| 11 | modelCount?: number; |
| 12 | providerCount?: number; |
| 13 | context?: number; |
| 14 | releaseDate?: string; |
| 15 | inputCost?: number; |
| 16 | outputCost?: number; |
| 17 | description?: string; |
| 18 | npm?: string; |
| 19 | api?: string; |
| 20 | updated?: string; |
| 21 | } |
| 22 | |
| 23 | interface SearchResult { |
| 24 | item: SearchIndexItem; |
nothing calls this directly
no outgoing calls
no test coverage detected