| 78 | } |
| 79 | |
| 80 | interface SearchIndexItem { |
| 81 | type: "model" | "provider" | "lab"; |
| 82 | title: string; |
| 83 | id: string; |
| 84 | href: string; |
| 85 | logo: string; |
| 86 | tokens: string[]; |
| 87 | lab?: string; |
| 88 | modelCount?: number; |
| 89 | providerCount?: number; |
| 90 | context?: number; |
| 91 | releaseDate?: string; |
| 92 | inputCost?: number; |
| 93 | outputCost?: number; |
| 94 | description?: string; |
| 95 | npm?: string; |
| 96 | api?: string; |
| 97 | updated?: string; |
| 98 | } |
| 99 | |
| 100 | const LAB_NAME_OVERRIDES: Record<string, string> = { |
| 101 | alibaba: "Alibaba", |
nothing calls this directly
no outgoing calls
no test coverage detected