MCPcopy
hub / github.com/anomalyco/models.dev / SearchIndexItem

Interface SearchIndexItem

packages/web/src/index.ts:3–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1type SortDirection = "asc" | "desc";
2
3interface 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
23interface SearchResult {
24 item: SearchIndexItem;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected