MCPcopy Create free account
hub / github.com/anomalyco/models.dev / ExistingModel

Interface ExistingModel

packages/core/script/generate-wandb.ts:42–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40 .strict();
41
42interface 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
75interface MergedModel {
76 base_model?: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected