@kortix/llm-catalog 0.10.9 → 0.10.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/catalog.generated.json +176455 -37361
- package/dist/index.d.ts +133 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +276 -129
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,152 @@
|
|
|
1
|
-
import catalogJson from
|
|
1
|
+
import catalogJson from './catalog.generated.json' with { type: 'json' };
|
|
2
|
+
const PROVIDER_AUTH_REQUIREMENT_OVERRIDES = {
|
|
3
|
+
'amazon-bedrock': {
|
|
4
|
+
methods: [
|
|
5
|
+
{
|
|
6
|
+
label: 'Bearer token',
|
|
7
|
+
// See the module doc comment above for the full trail. When SigV4
|
|
8
|
+
// signing lands, ADD a second method here (e.g. `{ label: 'IAM
|
|
9
|
+
// access key', envVars: ['AWS_ACCESS_KEY_ID', 'AWS_SECRET_ACCESS_KEY',
|
|
10
|
+
// 'AWS_REGION'] }`) — do not replace this one; existing bearer-token
|
|
11
|
+
// connections must keep working.
|
|
12
|
+
envVars: ['AWS_BEARER_TOKEN_BEDROCK', 'AWS_REGION'],
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
},
|
|
16
|
+
google: {
|
|
17
|
+
methods: [
|
|
18
|
+
// GOOGLE_GENERATIVE_AI_API_KEY first: the name @ai-sdk/google's own
|
|
19
|
+
// docs lead with, and what Kortix's CLI/UI have always written when
|
|
20
|
+
// connecting Google — kept as the connect form's primary field.
|
|
21
|
+
{ envVars: ['GOOGLE_GENERATIVE_AI_API_KEY'] },
|
|
22
|
+
{ envVars: ['GOOGLE_API_KEY'] },
|
|
23
|
+
{ envVars: ['GEMINI_API_KEY'] },
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* The auth requirement Kortix actually enforces for a catalog provider.
|
|
29
|
+
* Falls back to a single method requiring every var in `provider.env`
|
|
30
|
+
* (unchanged behavior) unless an override above corrects it.
|
|
31
|
+
*/
|
|
32
|
+
export function providerAuthRequirement(provider) {
|
|
33
|
+
const override = PROVIDER_AUTH_REQUIREMENT_OVERRIDES[provider.id];
|
|
34
|
+
if (override)
|
|
35
|
+
return override;
|
|
36
|
+
const env = provider.env ?? [];
|
|
37
|
+
return { methods: env.length > 0 ? [{ envVars: env }] : [] };
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* The env vars the connect form should collect for a provider — always the
|
|
41
|
+
* first (primary) auth method. Every provider has exactly one usable method
|
|
42
|
+
* today; this is the field list `ApiKeyConnectForm` renders and writes.
|
|
43
|
+
*/
|
|
44
|
+
export function primaryAuthEnvVars(provider) {
|
|
45
|
+
return providerAuthRequirement(provider).methods[0]?.envVars ?? [];
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* True when at least one of the requirement's auth methods has every one of
|
|
49
|
+
* its env vars present, per `hasEnvVar`. ANY-OF-methods, ALL-OF-vars-within-
|
|
50
|
+
* a-method — the one predicate every "is this provider connected" check
|
|
51
|
+
* (web connect modal, model-selector gating, native-mode provider merge, CLI
|
|
52
|
+
* `providers ls`) should use instead of hand-rolling `envVars.every(...)`
|
|
53
|
+
* over the raw catalog list.
|
|
54
|
+
*/
|
|
55
|
+
export function isProviderAuthSatisfied(requirement, hasEnvVar) {
|
|
56
|
+
return requirement.methods.some((method) => method.envVars.length > 0 && method.envVars.every(hasEnvVar));
|
|
57
|
+
}
|
|
58
|
+
// The standard effort tiers synthesized for a `budget_tokens`-shaped
|
|
59
|
+
// reasoning_options entry (no discrete `values` of its own to mirror). Chosen
|
|
60
|
+
// to match `REASONING_EFFORT_BUDGET_TOKENS`'s well-known low/medium/high keys
|
|
61
|
+
// (packages/llm-gateway/src/transports/ai-sdk/request.ts) so every value this
|
|
62
|
+
// control can offer resolves to a real thinking-token budget downstream —
|
|
63
|
+
// never an effort label the transport wouldn't know what to do with.
|
|
64
|
+
const BUDGET_TOKENS_EFFORT_TIERS = ['low', 'medium', 'high'];
|
|
65
|
+
/** Pure capability derivation — NEVER a per-model id lookup table. */
|
|
66
|
+
export function generationControlCapabilities(model) {
|
|
67
|
+
if (!model)
|
|
68
|
+
return { temperature: false, topP: false };
|
|
69
|
+
// Only expose an effort control when the model publishes a REAL
|
|
70
|
+
// reasoning_options entry — never fabricate one for a model that publishes
|
|
71
|
+
// none. Two shapes yield a control (see the field doc above): `effort`
|
|
72
|
+
// (its own exact values) and `budget_tokens` (synthesized standard tiers —
|
|
73
|
+
// it has no discrete values, but it's a real published knob, e.g. every
|
|
74
|
+
// mainline Claude model). A `toggle` entry matches neither branch below and
|
|
75
|
+
// falls through to `undefined` — deliberately: on/off isn't an effort enum,
|
|
76
|
+
// and there's no separate toggle-control surface wired today, so this is
|
|
77
|
+
// the "don't crash, don't fabricate" no-op for it.
|
|
78
|
+
const effortOption = model.reasoning_options?.find((option) => option.type === 'effort');
|
|
79
|
+
const budgetTokensOption = model.reasoning_options?.find((option) => option.type === 'budget_tokens');
|
|
80
|
+
const reasoningEffort = effortOption?.values?.length
|
|
81
|
+
? { values: effortOption.values }
|
|
82
|
+
: budgetTokensOption
|
|
83
|
+
? { values: [...BUDGET_TOKENS_EFFORT_TIERS] }
|
|
84
|
+
: undefined;
|
|
85
|
+
const temperature = model.temperature === true;
|
|
86
|
+
const ceiling = model.limit?.output;
|
|
87
|
+
const maxOutputTokens = typeof ceiling === 'number' && ceiling > 0 ? { ceiling } : undefined;
|
|
88
|
+
return {
|
|
89
|
+
reasoningEffort,
|
|
90
|
+
temperature,
|
|
91
|
+
topP: temperature,
|
|
92
|
+
maxOutputTokens,
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Drop/clamp every field of a (possibly user- or client-supplied)
|
|
97
|
+
* `GenerationConfig` against what `model` actually supports — the single
|
|
98
|
+
* gate BOTH the routing-policy write path (persistence) and the gateway
|
|
99
|
+
* resolution-layer injection path (see apps/api's routing/resolve-route.ts)
|
|
100
|
+
* must run a value through before it's trusted. A field the model doesn't
|
|
101
|
+
* support is silently dropped (never a validation error) so a model swap
|
|
102
|
+
* doesn't require the caller to also scrub unrelated config.
|
|
103
|
+
*/
|
|
104
|
+
export function clampGenerationConfig(config, model) {
|
|
105
|
+
if (!config)
|
|
106
|
+
return {};
|
|
107
|
+
const caps = generationControlCapabilities(model);
|
|
108
|
+
const out = {};
|
|
109
|
+
if (typeof config.reasoningEffort === 'string' &&
|
|
110
|
+
caps.reasoningEffort?.values.includes(config.reasoningEffort)) {
|
|
111
|
+
out.reasoningEffort = config.reasoningEffort;
|
|
112
|
+
}
|
|
113
|
+
if (typeof config.temperature === 'number' &&
|
|
114
|
+
caps.temperature &&
|
|
115
|
+
Number.isFinite(config.temperature)) {
|
|
116
|
+
out.temperature = Math.min(2, Math.max(0, config.temperature));
|
|
117
|
+
}
|
|
118
|
+
if (typeof config.topP === 'number' && caps.topP && Number.isFinite(config.topP)) {
|
|
119
|
+
out.topP = Math.min(1, Math.max(0, config.topP));
|
|
120
|
+
}
|
|
121
|
+
if (typeof config.maxOutputTokens === 'number' &&
|
|
122
|
+
caps.maxOutputTokens &&
|
|
123
|
+
Number.isFinite(config.maxOutputTokens)) {
|
|
124
|
+
out.maxOutputTokens = Math.min(caps.maxOutputTokens.ceiling, Math.max(1, Math.floor(config.maxOutputTokens)));
|
|
125
|
+
}
|
|
126
|
+
return out;
|
|
127
|
+
}
|
|
2
128
|
export const CATALOG = catalogJson;
|
|
129
|
+
// A managed model's `pricingRef` is supposed to be the model's real
|
|
130
|
+
// models.dev id, but Kortix's own display id is dotted (`claude-opus-4.8`)
|
|
131
|
+
// while models.dev Claude ids are dashed (`claude-opus-4-8`) — a mismatch
|
|
132
|
+
// here silently misses the models.dev lookup and falls back to a permissive
|
|
133
|
+
// synthetic capability record (no reasoning_options, temperature always
|
|
134
|
+
// true), which is wrong for real models. Consumers doing a `provider/model`
|
|
135
|
+
// lookup by `pricingRef` should try these candidates in order rather than
|
|
136
|
+
// a single exact match, so a dotted/dashed slip degrades gracefully instead
|
|
137
|
+
// of silently losing real capability data.
|
|
138
|
+
export function pricingRefLookupCandidates(pricingRef) {
|
|
139
|
+
const slash = pricingRef.indexOf('/');
|
|
140
|
+
if (slash <= 0)
|
|
141
|
+
return [pricingRef];
|
|
142
|
+
const providerId = pricingRef.slice(0, slash);
|
|
143
|
+
const modelId = pricingRef.slice(slash + 1);
|
|
144
|
+
const candidates = [pricingRef];
|
|
145
|
+
const dashed = `${providerId}/${modelId.replace(/\./g, '-')}`;
|
|
146
|
+
if (dashed !== pricingRef)
|
|
147
|
+
candidates.push(dashed);
|
|
148
|
+
return candidates;
|
|
149
|
+
}
|
|
3
150
|
// Managed model ids are single-segment (no `provider/` prefix). They are served
|
|
4
151
|
// to opencode under the `kortix` provider, so opencode references them as
|
|
5
152
|
// `kortix/<id>` (e.g. `kortix/claude-opus-4.8`) and sends `<id>` as the wire
|
|
@@ -13,65 +160,65 @@ export const CATALOG = catalogJson;
|
|
|
13
160
|
// everything else goes via OpenRouter.
|
|
14
161
|
export const MANAGED_MODELS = [
|
|
15
162
|
{
|
|
16
|
-
id:
|
|
17
|
-
name:
|
|
18
|
-
upstreamModelId:
|
|
19
|
-
transport:
|
|
20
|
-
pricingRef:
|
|
21
|
-
tier:
|
|
163
|
+
id: 'claude-opus-4.8',
|
|
164
|
+
name: 'Claude Opus 4.8',
|
|
165
|
+
upstreamModelId: 'us.anthropic.claude-opus-4-8',
|
|
166
|
+
transport: 'bedrock',
|
|
167
|
+
pricingRef: 'anthropic/claude-opus-4-8',
|
|
168
|
+
tier: 'flagship',
|
|
22
169
|
vision: true,
|
|
23
170
|
limit: { context: 1_000_000, output: 64_000 },
|
|
24
171
|
},
|
|
25
172
|
{
|
|
26
|
-
id:
|
|
27
|
-
name:
|
|
28
|
-
upstreamModelId:
|
|
29
|
-
transport:
|
|
30
|
-
pricingRef:
|
|
31
|
-
tier:
|
|
173
|
+
id: 'claude-sonnet-4.6',
|
|
174
|
+
name: 'Claude Sonnet 4.6',
|
|
175
|
+
upstreamModelId: 'us.anthropic.claude-sonnet-4-6',
|
|
176
|
+
transport: 'bedrock',
|
|
177
|
+
pricingRef: 'anthropic/claude-sonnet-4-6',
|
|
178
|
+
tier: 'balanced',
|
|
32
179
|
vision: true,
|
|
33
180
|
limit: { context: 1_000_000, output: 64_000 },
|
|
34
181
|
},
|
|
35
182
|
{
|
|
36
|
-
id:
|
|
37
|
-
name:
|
|
38
|
-
upstreamModelId:
|
|
39
|
-
transport:
|
|
40
|
-
pricingRef:
|
|
41
|
-
tier:
|
|
183
|
+
id: 'glm-5.2',
|
|
184
|
+
name: 'GLM 5.2',
|
|
185
|
+
upstreamModelId: 'z-ai/glm-5.2',
|
|
186
|
+
transport: 'openrouter',
|
|
187
|
+
pricingRef: 'z-ai/glm-5.2',
|
|
188
|
+
tier: 'balanced',
|
|
42
189
|
vision: false,
|
|
43
190
|
limit: { context: 1_000_000, output: 131_072 },
|
|
44
191
|
// Prefer Z.AI's first-party endpoint (99.9%+ uptime, native fp8). Fallbacks
|
|
45
192
|
// stay enabled so an actual Z.AI outage still routes rather than failing.
|
|
46
|
-
openrouterProvider: { order: [
|
|
193
|
+
openrouterProvider: { order: ['z-ai'], allow_fallbacks: true },
|
|
47
194
|
},
|
|
48
195
|
{
|
|
49
|
-
id:
|
|
50
|
-
name:
|
|
51
|
-
upstreamModelId:
|
|
52
|
-
transport:
|
|
53
|
-
pricingRef:
|
|
54
|
-
tier:
|
|
196
|
+
id: 'qwen3.7-max',
|
|
197
|
+
name: 'Qwen3.7 Max',
|
|
198
|
+
upstreamModelId: 'qwen/qwen3.7-max',
|
|
199
|
+
transport: 'openrouter',
|
|
200
|
+
pricingRef: 'qwen/qwen3.7-max',
|
|
201
|
+
tier: 'balanced',
|
|
55
202
|
vision: false,
|
|
56
203
|
limit: { context: 1_048_576, output: 64_000 },
|
|
57
204
|
},
|
|
58
205
|
{
|
|
59
|
-
id:
|
|
60
|
-
name:
|
|
61
|
-
upstreamModelId:
|
|
62
|
-
transport:
|
|
63
|
-
pricingRef:
|
|
64
|
-
tier:
|
|
206
|
+
id: 'deepseek-v4-pro',
|
|
207
|
+
name: 'DeepSeek V4 Pro',
|
|
208
|
+
upstreamModelId: 'deepseek/deepseek-v4-pro',
|
|
209
|
+
transport: 'openrouter',
|
|
210
|
+
pricingRef: 'deepseek/deepseek-v4-pro',
|
|
211
|
+
tier: 'balanced',
|
|
65
212
|
vision: false,
|
|
66
213
|
limit: { context: 1_048_576, output: 64_000 },
|
|
67
214
|
},
|
|
68
215
|
{
|
|
69
|
-
id:
|
|
70
|
-
name:
|
|
71
|
-
upstreamModelId:
|
|
72
|
-
transport:
|
|
73
|
-
pricingRef:
|
|
74
|
-
tier:
|
|
216
|
+
id: 'deepseek-v4-flash',
|
|
217
|
+
name: 'DeepSeek V4 Flash',
|
|
218
|
+
upstreamModelId: 'deepseek/deepseek-v4-flash',
|
|
219
|
+
transport: 'openrouter',
|
|
220
|
+
pricingRef: 'deepseek/deepseek-v4-flash',
|
|
221
|
+
tier: 'balanced',
|
|
75
222
|
vision: false,
|
|
76
223
|
limit: { context: 1_048_576, output: 64_000 },
|
|
77
224
|
},
|
|
@@ -84,7 +231,7 @@ export function isManagedModelId(id) {
|
|
|
84
231
|
return MANAGED_BY_ID.has(id);
|
|
85
232
|
}
|
|
86
233
|
export const DEFAULT_MANAGED_MODEL_IDS = MANAGED_MODELS.map((m) => m.id);
|
|
87
|
-
export const MANAGED_FLAGSHIP_MODEL_ID = (MANAGED_MODELS.find((m) => m.tier ===
|
|
234
|
+
export const MANAGED_FLAGSHIP_MODEL_ID = (MANAGED_MODELS.find((m) => m.tier === 'flagship') ?? MANAGED_MODELS[0]).id;
|
|
88
235
|
// ─── AUTO: managed model selection ──────────────────────────────────────────
|
|
89
236
|
// The catalog advertises a synthetic `auto` model presented to users as
|
|
90
237
|
// "automatically picks the cheapest, most efficient model for the task." When a
|
|
@@ -99,7 +246,7 @@ export const MANAGED_FLAGSHIP_MODEL_ID = (MANAGED_MODELS.find((m) => m.tier ===
|
|
|
99
246
|
// intact — the sandbox still defaults `small_model`/headless sessions to `auto`,
|
|
100
247
|
// and a stale gateway caller asking for raw `auto` still resolves — so re-exposing
|
|
101
248
|
// the toggle is a one-line flip.
|
|
102
|
-
export const AUTO_MODEL_ID =
|
|
249
|
+
export const AUTO_MODEL_ID = 'auto';
|
|
103
250
|
// Whether AUTO is exposed in the model picker. Off for now: we want an explicit
|
|
104
251
|
// opt-in on which model to use, and will bring AUTO back later. The web app reads
|
|
105
252
|
// this through `featureFlags.enableAutoModel`, which can override it per-deploy via
|
|
@@ -108,17 +255,15 @@ export const AUTO_MODEL_ID = "auto";
|
|
|
108
255
|
export const AUTO_MODEL_ENABLED = false;
|
|
109
256
|
// The single "what to choose for auto" knob: a gateway wire model. It may be a
|
|
110
257
|
// managed bare id (`glm-5.2`) or a provider-qualified id (`codex/gpt-5.6-sol`).
|
|
111
|
-
export const AUTO_DEFAULT_MODEL_ID =
|
|
258
|
+
export const AUTO_DEFAULT_MODEL_ID = 'codex/gpt-5.6-sol';
|
|
112
259
|
const AUTO_TARGET_MODEL = AUTO_DEFAULT_MODEL_ID;
|
|
113
|
-
const AUTO_VISION_MODEL =
|
|
260
|
+
const AUTO_VISION_MODEL = 'claude-sonnet-4.6'; // when the request has image content
|
|
114
261
|
function requestHasImage(body) {
|
|
115
262
|
const messages = Array.isArray(body.messages) ? body.messages : [];
|
|
116
263
|
for (const message of messages) {
|
|
117
264
|
const content = message.content;
|
|
118
265
|
if (Array.isArray(content) &&
|
|
119
|
-
content.some((part) => !!part &&
|
|
120
|
-
typeof part === "object" &&
|
|
121
|
-
part.type === "image_url")) {
|
|
266
|
+
content.some((part) => !!part && typeof part === 'object' && part.type === 'image_url')) {
|
|
122
267
|
return true;
|
|
123
268
|
}
|
|
124
269
|
}
|
|
@@ -142,7 +287,7 @@ export function pickAutoModel(model, body, opts) {
|
|
|
142
287
|
return null;
|
|
143
288
|
const target = opts?.defaultModel || AUTO_TARGET_MODEL;
|
|
144
289
|
if (requestHasImage(body)) {
|
|
145
|
-
const bareId = target.startsWith(
|
|
290
|
+
const bareId = target.startsWith('kortix/') ? target.slice('kortix/'.length) : target;
|
|
146
291
|
const managed = getManagedModel(bareId);
|
|
147
292
|
if (managed && !managed.vision)
|
|
148
293
|
return AUTO_VISION_MODEL;
|
|
@@ -150,90 +295,92 @@ export function pickAutoModel(model, body, opts) {
|
|
|
150
295
|
return target;
|
|
151
296
|
}
|
|
152
297
|
export const MODEL_SELECTOR_PROVIDER_IDS = [
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
298
|
+
'kortix',
|
|
299
|
+
'opencode',
|
|
300
|
+
'anthropic',
|
|
301
|
+
'openai',
|
|
302
|
+
'github-copilot',
|
|
303
|
+
'google',
|
|
304
|
+
'openrouter',
|
|
305
|
+
'vercel',
|
|
161
306
|
];
|
|
162
307
|
export const PROVIDER_LABELS = {
|
|
163
|
-
anthropic:
|
|
164
|
-
openai:
|
|
165
|
-
codex:
|
|
166
|
-
google:
|
|
167
|
-
xai:
|
|
168
|
-
moonshotai:
|
|
169
|
-
|
|
170
|
-
opencode:
|
|
171
|
-
kortix:
|
|
172
|
-
firmware:
|
|
173
|
-
bedrock:
|
|
174
|
-
openrouter:
|
|
175
|
-
|
|
176
|
-
vercel:
|
|
177
|
-
groq:
|
|
178
|
-
deepseek:
|
|
179
|
-
mistral:
|
|
180
|
-
cohere:
|
|
181
|
-
llama:
|
|
182
|
-
huggingface:
|
|
183
|
-
cerebras:
|
|
184
|
-
togetherai:
|
|
185
|
-
fireworks:
|
|
186
|
-
deepinfra:
|
|
187
|
-
nvidia:
|
|
188
|
-
cloudflare:
|
|
189
|
-
azure:
|
|
190
|
-
ollama:
|
|
191
|
-
perplexity:
|
|
192
|
-
lmstudio:
|
|
193
|
-
v0:
|
|
194
|
-
wandb:
|
|
195
|
-
baseten:
|
|
196
|
-
minimax
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
308
|
+
anthropic: 'Anthropic',
|
|
309
|
+
openai: 'OpenAI',
|
|
310
|
+
codex: 'ChatGPT',
|
|
311
|
+
google: 'Google',
|
|
312
|
+
xai: 'xAI',
|
|
313
|
+
moonshotai: 'Moonshot',
|
|
314
|
+
'moonshotai-cn': 'Moonshot',
|
|
315
|
+
opencode: 'OpenCode Zen',
|
|
316
|
+
kortix: 'Kortix',
|
|
317
|
+
firmware: 'Firmware',
|
|
318
|
+
bedrock: 'AWS Bedrock',
|
|
319
|
+
openrouter: 'OpenRouter',
|
|
320
|
+
'github-copilot': 'GitHub Copilot',
|
|
321
|
+
vercel: 'Vercel',
|
|
322
|
+
groq: 'Groq',
|
|
323
|
+
deepseek: 'DeepSeek',
|
|
324
|
+
mistral: 'Mistral',
|
|
325
|
+
cohere: 'Cohere',
|
|
326
|
+
llama: 'Llama',
|
|
327
|
+
huggingface: 'Hugging Face',
|
|
328
|
+
cerebras: 'Cerebras',
|
|
329
|
+
togetherai: 'Together AI',
|
|
330
|
+
fireworks: 'Fireworks',
|
|
331
|
+
deepinfra: 'DeepInfra',
|
|
332
|
+
nvidia: 'NVIDIA',
|
|
333
|
+
cloudflare: 'Cloudflare',
|
|
334
|
+
azure: 'Azure',
|
|
335
|
+
ollama: 'Ollama',
|
|
336
|
+
perplexity: 'Perplexity',
|
|
337
|
+
lmstudio: 'LM Studio',
|
|
338
|
+
v0: 'v0',
|
|
339
|
+
wandb: 'W&B',
|
|
340
|
+
baseten: 'Baseten',
|
|
341
|
+
// MiniMax is its own distinct BYOK provider (minimax.io / minimaxi.com) —
|
|
342
|
+
// not Moonshot. Was mislabeled 'Moonshot' for both regional variants.
|
|
343
|
+
minimax: 'MiniMax',
|
|
344
|
+
'minimax-cn': 'MiniMax',
|
|
345
|
+
siliconflow: 'SiliconFlow',
|
|
346
|
+
'siliconflow-cn': 'SiliconFlow',
|
|
347
|
+
zhipuai: 'ZhipuAI',
|
|
348
|
+
'zhipuai-cn': 'ZhipuAI',
|
|
349
|
+
'google-vertex': 'Google Vertex',
|
|
350
|
+
'google-vertex-anthropic': 'Vertex Anthropic',
|
|
351
|
+
'azure-cognitive-services': 'Azure Cognitive',
|
|
352
|
+
'cloudflare-ai-gateway': 'Cloudflare Gateway',
|
|
353
|
+
'github-models': 'GitHub Models',
|
|
354
|
+
'ollama-cloud': 'Ollama Cloud',
|
|
355
|
+
'kai Coding Plan': 'AI21',
|
|
356
|
+
zaicodingplan: 'AI21',
|
|
357
|
+
venice: 'Venice',
|
|
358
|
+
upstage: 'Upstage',
|
|
359
|
+
nebius: 'Nebius',
|
|
360
|
+
vultr: 'Vultr',
|
|
361
|
+
friendli: 'Friendli',
|
|
362
|
+
poe: 'Poe',
|
|
363
|
+
requesty: 'Requesty',
|
|
364
|
+
'sap-ai-core': 'SAP AI Core',
|
|
365
|
+
scaleway: 'Scaleway',
|
|
366
|
+
inception: 'Inception',
|
|
367
|
+
morph: 'Morph',
|
|
368
|
+
abacus: 'Abacus',
|
|
369
|
+
bailing: 'Bailing',
|
|
370
|
+
chutes: 'Chutes',
|
|
371
|
+
fastrouter: 'FastRouter',
|
|
372
|
+
helicone: 'Helicone',
|
|
373
|
+
iflowcn: 'iFlytek',
|
|
374
|
+
inference: 'Inference',
|
|
375
|
+
'io-net': 'IO.net',
|
|
376
|
+
'kimi-for-coding': 'Kimi',
|
|
377
|
+
lucidquery: 'LucidQuery',
|
|
378
|
+
modelscope: 'ModelScope',
|
|
379
|
+
'nano-gpt': 'NanoGPT',
|
|
380
|
+
ovhcloud: 'OVHcloud',
|
|
381
|
+
submodel: 'Submodel',
|
|
382
|
+
synthetic: 'Synthetic',
|
|
383
|
+
xiaomi: 'Xiaomi',
|
|
384
|
+
zenmux: 'Zenmux',
|
|
238
385
|
};
|
|
239
386
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,0BAA0B,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kortix/llm-catalog",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.11",
|
|
4
4
|
"description": "The Kortix LLM model catalog — the models the Kortix gateway supports, the managed-model set and defaults, and the auto-model picker. Generated from models.dev; consumed across the Kortix platform and by the @kortix/sdk.",
|
|
5
5
|
"license": "Elastic-2.0",
|
|
6
6
|
"homepage": "https://github.com/kortix-ai/suna/tree/main/packages/llm-catalog",
|