hyperclaw 5.1.9 → 5.2.0
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/chat-BQMPVq39.js +310 -0
- package/dist/chat-DGUj_NDO.js +310 -0
- package/dist/daemon-DbWcGYXq.js +5 -0
- package/dist/daemon-DkdMP-kQ.js +316 -0
- package/dist/daemon-RoGBr7z8.js +316 -0
- package/dist/daemon-XtFu-VzD.js +5 -0
- package/dist/engine-BY0XLiQ1.js +7 -0
- package/dist/engine-CaG7uwkg.js +305 -0
- package/dist/engine-Ccmpd_MH.js +305 -0
- package/dist/engine-DeQdDkFO.js +7 -0
- package/dist/hyperclawbot-BD5gNWO8.js +505 -0
- package/dist/hyperclawbot-D6cmZ6Bg.js +505 -0
- package/dist/mcp-loader-CbcyUzpM.js +94 -0
- package/dist/onboard-0RpraIyZ.js +11 -0
- package/dist/onboard-B8zjN52U.js +4149 -0
- package/dist/onboard-CGGZRH3J.js +4149 -0
- package/dist/onboard-xgJmy17T.js +11 -0
- package/dist/orchestrator-BeK8XyJY.js +6 -0
- package/dist/orchestrator-Cj5XWVVe.js +189 -0
- package/dist/orchestrator-TsNkrbVG.js +6 -0
- package/dist/orchestrator-zS6Manjk.js +189 -0
- package/dist/providers-Bk6Y_v9m.js +681 -0
- package/dist/providers-BvScOYvt.js +5 -0
- package/dist/providers-DEJ8Jtml.js +1089 -0
- package/dist/providers-EyJsZ-sr.js +5 -0
- package/dist/run-main.js +27 -27
- package/dist/server-CeZNKjAL.js +4 -0
- package/dist/server-DBUnNWZY.js +1255 -0
- package/dist/server-DUVnyXaR.js +1255 -0
- package/dist/server-Dy7Q-YLx.js +4 -0
- package/dist/skill-runtime-Bsf3CXxL.js +102 -0
- package/dist/skill-runtime-C_54rn66.js +5 -0
- package/dist/skill-runtime-Do7NLtoa.js +5 -0
- package/dist/skill-runtime-fDLfk3m3.js +102 -0
- package/dist/src-CQOQRIzS.js +458 -0
- package/dist/src-DQ9Q89FM.js +458 -0
- package/dist/src-DXaT-nxD.js +63 -0
- package/dist/src-DrDuFPKq.js +63 -0
- package/dist/sub-agent-tools-Bfk5uqJo.js +39 -0
- package/dist/sub-agent-tools-XeiuvDg5.js +39 -0
- package/package.json +1 -1
|
@@ -0,0 +1,1089 @@
|
|
|
1
|
+
const require_chunk = require('./chunk-jS-bbMI5.js');
|
|
2
|
+
const chalk = require_chunk.__toESM(require("chalk"));
|
|
3
|
+
|
|
4
|
+
//#region src/cli/providers.ts
|
|
5
|
+
function getProvider(id) {
|
|
6
|
+
return PROVIDERS.find((p) => p.id === id);
|
|
7
|
+
}
|
|
8
|
+
/** Providers that support voice note transcription. Shown in wizard. */
|
|
9
|
+
function getTranscriptionProviders() {
|
|
10
|
+
return PROVIDERS.filter((p) => p.supportsTranscription);
|
|
11
|
+
}
|
|
12
|
+
function formatModel(m) {
|
|
13
|
+
const badges = [];
|
|
14
|
+
if (m.flagship) badges.push(chalk.default.yellow("★"));
|
|
15
|
+
if (m.reasoning) badges.push(chalk.default.magenta("reasoning"));
|
|
16
|
+
if (m.fast) badges.push(chalk.default.green("fast"));
|
|
17
|
+
if (m.vision) badges.push(chalk.default.cyan("vision"));
|
|
18
|
+
const ctx = m.contextK >= 1e3 ? `${m.contextK}K` : `${m.contextK}K`;
|
|
19
|
+
return `${badges.join(" ")} ${m.name} ${chalk.default.gray(`ctx ${ctx}`)}`.trim();
|
|
20
|
+
}
|
|
21
|
+
var PROVIDERS;
|
|
22
|
+
var init_providers = require_chunk.__esm({ "src/cli/providers.ts"() {
|
|
23
|
+
PROVIDERS = [
|
|
24
|
+
{
|
|
25
|
+
id: "anthropic",
|
|
26
|
+
displayName: "🎭 Anthropic (API Key)",
|
|
27
|
+
authType: "api_key",
|
|
28
|
+
authLabel: "Anthropic API Key",
|
|
29
|
+
authHint: "console.anthropic.com → API Keys",
|
|
30
|
+
models: [
|
|
31
|
+
{
|
|
32
|
+
id: "claude-opus-4-6",
|
|
33
|
+
name: "Claude Opus 4.6",
|
|
34
|
+
contextK: 200,
|
|
35
|
+
reasoning: true,
|
|
36
|
+
flagship: true
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
id: "claude-sonnet-4-6",
|
|
40
|
+
name: "Claude Sonnet 4.6",
|
|
41
|
+
contextK: 200,
|
|
42
|
+
reasoning: true
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
id: "claude-haiku-4-5-20251001",
|
|
46
|
+
name: "Claude Haiku 4.5",
|
|
47
|
+
contextK: 200,
|
|
48
|
+
fast: true
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
id: "claude-opus-4-1-20250805",
|
|
52
|
+
name: "Claude Opus 4.1",
|
|
53
|
+
contextK: 200,
|
|
54
|
+
reasoning: true
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
id: "claude-opus-4-20250514",
|
|
58
|
+
name: "Claude Opus 4",
|
|
59
|
+
contextK: 200
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
id: "claude-sonnet-4-20250514",
|
|
63
|
+
name: "Claude Sonnet 4",
|
|
64
|
+
contextK: 200
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
id: "claude-3-7-sonnet-20250219",
|
|
68
|
+
name: "Claude 3.7 Sonnet",
|
|
69
|
+
contextK: 200,
|
|
70
|
+
reasoning: true
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
id: "claude-3-5-haiku-20241022",
|
|
74
|
+
name: "Claude 3.5 Haiku",
|
|
75
|
+
contextK: 200,
|
|
76
|
+
fast: true
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
id: "anthropic-oauth",
|
|
82
|
+
displayName: "🎭 Anthropic (OAuth — Claude Code/Max)",
|
|
83
|
+
authType: "oauth",
|
|
84
|
+
authLabel: "Claude OAuth credentials",
|
|
85
|
+
authHint: "Reuses ~/.claude/.credentials.json (Claude Code CLI) or macOS Keychain \"Claude Code-credentials\"",
|
|
86
|
+
models: [{
|
|
87
|
+
id: "claude-opus-4-6",
|
|
88
|
+
name: "Claude Opus 4.6",
|
|
89
|
+
contextK: 200,
|
|
90
|
+
reasoning: true,
|
|
91
|
+
flagship: true
|
|
92
|
+
}, {
|
|
93
|
+
id: "claude-sonnet-4-6",
|
|
94
|
+
name: "Claude Sonnet 4.6",
|
|
95
|
+
contextK: 200,
|
|
96
|
+
reasoning: true
|
|
97
|
+
}]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
id: "anthropic-setup-token",
|
|
101
|
+
displayName: "🎭 Anthropic (setup-token)",
|
|
102
|
+
authType: "api_key",
|
|
103
|
+
authLabel: "Anthropic setup-token",
|
|
104
|
+
authHint: "Run `claude setup-token` on any machine → paste the token here",
|
|
105
|
+
models: [{
|
|
106
|
+
id: "claude-opus-4-6",
|
|
107
|
+
name: "Claude Opus 4.6",
|
|
108
|
+
contextK: 200,
|
|
109
|
+
reasoning: true,
|
|
110
|
+
flagship: true
|
|
111
|
+
}, {
|
|
112
|
+
id: "claude-sonnet-4-6",
|
|
113
|
+
name: "Claude Sonnet 4.6",
|
|
114
|
+
contextK: 200,
|
|
115
|
+
reasoning: true
|
|
116
|
+
}]
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
id: "vercel-ai",
|
|
120
|
+
displayName: "▲ Vercel AI Gateway",
|
|
121
|
+
authType: "api_key",
|
|
122
|
+
authLabel: "Vercel AI Gateway API Key",
|
|
123
|
+
authHint: "vercel.com/docs/ai — multi-model proxy (AI_GATEWAY_API_KEY)",
|
|
124
|
+
baseUrl: "https://ai-gateway.vercel.sh/v1",
|
|
125
|
+
models: [
|
|
126
|
+
{
|
|
127
|
+
id: "openai/gpt-4o",
|
|
128
|
+
name: "GPT-4o (via Vercel)",
|
|
129
|
+
contextK: 128,
|
|
130
|
+
flagship: true
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
id: "anthropic/claude-3-5-sonnet-20241022",
|
|
134
|
+
name: "Claude 3.5 Sonnet (via Vercel)",
|
|
135
|
+
contextK: 200
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
id: "google/gemini-2.0-flash-001",
|
|
139
|
+
name: "Gemini 2.0 Flash (via Vercel)",
|
|
140
|
+
contextK: 1e3,
|
|
141
|
+
fast: true
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
id: "opencode-zen",
|
|
147
|
+
displayName: "🧘 OpenCode Zen (multi-model proxy)",
|
|
148
|
+
authType: "api_key",
|
|
149
|
+
authLabel: "OpenCode Zen API Key",
|
|
150
|
+
authHint: "opencode.ai/auth — OPENCODE_API_KEY",
|
|
151
|
+
baseUrl: "https://api.opencode.ai/v1",
|
|
152
|
+
models: [{
|
|
153
|
+
id: "auto",
|
|
154
|
+
name: "Auto (best available)",
|
|
155
|
+
contextK: 200,
|
|
156
|
+
flagship: true
|
|
157
|
+
}]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
id: "openrouter",
|
|
161
|
+
displayName: "🌐 OpenRouter",
|
|
162
|
+
authType: "api_key",
|
|
163
|
+
authLabel: "OpenRouter API Key",
|
|
164
|
+
authHint: "openrouter.ai/keys",
|
|
165
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
166
|
+
supportsTranscription: true,
|
|
167
|
+
models: [
|
|
168
|
+
{
|
|
169
|
+
id: "openrouter/auto",
|
|
170
|
+
name: "Auto (best available)",
|
|
171
|
+
contextK: 200,
|
|
172
|
+
flagship: true
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
id: "anthropic/claude-opus-4-5",
|
|
176
|
+
name: "Claude Opus 4.5",
|
|
177
|
+
contextK: 200,
|
|
178
|
+
reasoning: true
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
id: "anthropic/claude-sonnet-4-5",
|
|
182
|
+
name: "Claude Sonnet 4.5",
|
|
183
|
+
contextK: 200
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
id: "anthropic/claude-3-7-sonnet",
|
|
187
|
+
name: "Claude 3.7 Sonnet",
|
|
188
|
+
contextK: 200,
|
|
189
|
+
reasoning: true
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
id: "anthropic/claude-3-5-haiku",
|
|
193
|
+
name: "Claude 3.5 Haiku",
|
|
194
|
+
contextK: 200,
|
|
195
|
+
fast: true
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
id: "openai/gpt-4o",
|
|
199
|
+
name: "GPT-4o",
|
|
200
|
+
contextK: 128,
|
|
201
|
+
vision: true
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
id: "openai/gpt-4o-mini",
|
|
205
|
+
name: "GPT-4o Mini",
|
|
206
|
+
contextK: 128,
|
|
207
|
+
fast: true
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
id: "openai/o3-mini",
|
|
211
|
+
name: "o3-mini (reasoning)",
|
|
212
|
+
contextK: 200,
|
|
213
|
+
reasoning: true,
|
|
214
|
+
fast: true
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
id: "google/gemini-2.5-pro-preview",
|
|
218
|
+
name: "Gemini 2.5 Pro",
|
|
219
|
+
contextK: 1e3,
|
|
220
|
+
reasoning: true
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
id: "google/gemini-2.0-flash-001",
|
|
224
|
+
name: "Gemini 2.0 Flash",
|
|
225
|
+
contextK: 1e3,
|
|
226
|
+
fast: true
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
id: "x-ai/grok-3",
|
|
230
|
+
name: "Grok 3",
|
|
231
|
+
contextK: 131,
|
|
232
|
+
reasoning: true
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
id: "deepseek/deepseek-r1",
|
|
236
|
+
name: "DeepSeek R1",
|
|
237
|
+
contextK: 64,
|
|
238
|
+
reasoning: true
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
id: "deepseek/deepseek-chat-v3-0324",
|
|
242
|
+
name: "DeepSeek V3",
|
|
243
|
+
contextK: 64
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
id: "meta-llama/llama-3.3-70b-instruct",
|
|
247
|
+
name: "Llama 3.3 70B",
|
|
248
|
+
contextK: 128
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
id: "mistralai/mistral-large-2411",
|
|
252
|
+
name: "Mistral Large",
|
|
253
|
+
contextK: 128
|
|
254
|
+
}
|
|
255
|
+
]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
id: "openai",
|
|
259
|
+
displayName: "🧠 OpenAI",
|
|
260
|
+
authType: "api_key",
|
|
261
|
+
authLabel: "OpenAI API Key",
|
|
262
|
+
authHint: "platform.openai.com/api-keys",
|
|
263
|
+
baseUrl: "https://api.openai.com/v1",
|
|
264
|
+
supportsTranscription: true,
|
|
265
|
+
models: [
|
|
266
|
+
{
|
|
267
|
+
id: "gpt-5.2",
|
|
268
|
+
name: "GPT-5.2",
|
|
269
|
+
contextK: 1e3,
|
|
270
|
+
vision: true,
|
|
271
|
+
flagship: true
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
id: "gpt-5.1",
|
|
275
|
+
name: "GPT-5.1",
|
|
276
|
+
contextK: 1e3,
|
|
277
|
+
vision: true
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
id: "gpt-5",
|
|
281
|
+
name: "GPT-5",
|
|
282
|
+
contextK: 1e3,
|
|
283
|
+
vision: true
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
id: "gpt-4.1",
|
|
287
|
+
name: "GPT-4.1",
|
|
288
|
+
contextK: 1e3,
|
|
289
|
+
vision: true
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
id: "gpt-4.1-mini",
|
|
293
|
+
name: "GPT-4.1 Mini",
|
|
294
|
+
contextK: 1e3,
|
|
295
|
+
fast: true
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
id: "gpt-4.1-nano",
|
|
299
|
+
name: "GPT-4.1 Nano",
|
|
300
|
+
contextK: 1e3,
|
|
301
|
+
fast: true
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
id: "gpt-4o",
|
|
305
|
+
name: "GPT-4o",
|
|
306
|
+
contextK: 128,
|
|
307
|
+
vision: true
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
id: "gpt-4o-mini",
|
|
311
|
+
name: "GPT-4o Mini",
|
|
312
|
+
contextK: 128,
|
|
313
|
+
fast: true
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
id: "o4-mini",
|
|
317
|
+
name: "o4-mini (reasoning)",
|
|
318
|
+
contextK: 200,
|
|
319
|
+
reasoning: true,
|
|
320
|
+
fast: true
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
id: "o3",
|
|
324
|
+
name: "o3 (reasoning)",
|
|
325
|
+
contextK: 200,
|
|
326
|
+
reasoning: true
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
id: "o3-mini",
|
|
330
|
+
name: "o3-mini (reasoning)",
|
|
331
|
+
contextK: 200,
|
|
332
|
+
reasoning: true,
|
|
333
|
+
fast: true
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
id: "o1",
|
|
337
|
+
name: "o1 (reasoning)",
|
|
338
|
+
contextK: 200,
|
|
339
|
+
reasoning: true
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
id: "o1-mini",
|
|
343
|
+
name: "o1-mini (reasoning)",
|
|
344
|
+
contextK: 128,
|
|
345
|
+
reasoning: true,
|
|
346
|
+
fast: true
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
id: "gpt-5.3-codex",
|
|
350
|
+
name: "GPT-5.3 Codex (code)",
|
|
351
|
+
contextK: 1e3
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
id: "gpt-5.2-codex",
|
|
355
|
+
name: "GPT-5.2 Codex (code)",
|
|
356
|
+
contextK: 1e3
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
id: "gpt-5.1-codex",
|
|
360
|
+
name: "GPT-5.1 Codex (code)",
|
|
361
|
+
contextK: 1e3
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
id: "gpt-5.1-codex-max",
|
|
365
|
+
name: "GPT-5.1 Codex Max (code)",
|
|
366
|
+
contextK: 1e3
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
id: "gpt-5.1-codex-mini",
|
|
370
|
+
name: "GPT-5.1 Codex Mini (code)",
|
|
371
|
+
contextK: 1e3,
|
|
372
|
+
fast: true
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
id: "gpt-5-codex",
|
|
376
|
+
name: "GPT-5 Codex (code)",
|
|
377
|
+
contextK: 1e3
|
|
378
|
+
}
|
|
379
|
+
]
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
id: "google",
|
|
383
|
+
displayName: "🔍 Google",
|
|
384
|
+
authType: "api_key",
|
|
385
|
+
authLabel: "Google AI API Key",
|
|
386
|
+
authHint: "aistudio.google.com/app/apikey",
|
|
387
|
+
baseUrl: "https://generativelanguage.googleapis.com/v1beta/openai",
|
|
388
|
+
supportsTranscription: true,
|
|
389
|
+
models: [
|
|
390
|
+
{
|
|
391
|
+
id: "gemini-3-pro-preview",
|
|
392
|
+
name: "Gemini 3 Pro (preview)",
|
|
393
|
+
contextK: 1e3,
|
|
394
|
+
reasoning: true,
|
|
395
|
+
flagship: true
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
id: "gemini-3-pro-image-preview",
|
|
399
|
+
name: "Gemini 3 Pro Image (preview)",
|
|
400
|
+
contextK: 1e3,
|
|
401
|
+
vision: true
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
id: "gemini-3-flash-preview",
|
|
405
|
+
name: "Gemini 3 Flash (preview)",
|
|
406
|
+
contextK: 1e3,
|
|
407
|
+
fast: true
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
id: "gemini-2.5-pro",
|
|
411
|
+
name: "Gemini 2.5 Pro",
|
|
412
|
+
contextK: 1e3,
|
|
413
|
+
reasoning: true
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
id: "gemini-2.5-flash",
|
|
417
|
+
name: "Gemini 2.5 Flash",
|
|
418
|
+
contextK: 1e3,
|
|
419
|
+
fast: true
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
id: "gemini-2.5-flash-lite",
|
|
423
|
+
name: "Gemini 2.5 Flash Lite (free)",
|
|
424
|
+
contextK: 1e3,
|
|
425
|
+
fast: true
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
id: "gemini-2.5-pro-preview-tts",
|
|
429
|
+
name: "Gemini 2.5 Pro TTS (audio)",
|
|
430
|
+
contextK: 1e3
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
id: "gemini-2.0-flash",
|
|
434
|
+
name: "Gemini 2.0 Flash (free)",
|
|
435
|
+
contextK: 1e3,
|
|
436
|
+
fast: true
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
id: "gemini-2.0-flash-lite",
|
|
440
|
+
name: "Gemini 2.0 Flash Lite (free)",
|
|
441
|
+
contextK: 1e3,
|
|
442
|
+
fast: true
|
|
443
|
+
}
|
|
444
|
+
]
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
id: "xai",
|
|
448
|
+
displayName: "⚡ xAI (Grok)",
|
|
449
|
+
authType: "api_key",
|
|
450
|
+
authLabel: "xAI API Key",
|
|
451
|
+
authHint: "console.x.ai",
|
|
452
|
+
baseUrl: "https://api.x.ai/v1",
|
|
453
|
+
models: [
|
|
454
|
+
{
|
|
455
|
+
id: "grok-4",
|
|
456
|
+
name: "Grok 4",
|
|
457
|
+
contextK: 256,
|
|
458
|
+
reasoning: true,
|
|
459
|
+
flagship: true
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
id: "grok-4-1-fast-reasoning",
|
|
463
|
+
name: "Grok 4.1 Fast (reasoning)",
|
|
464
|
+
contextK: 256,
|
|
465
|
+
reasoning: true,
|
|
466
|
+
fast: true
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
id: "grok-3",
|
|
470
|
+
name: "Grok 3",
|
|
471
|
+
contextK: 131,
|
|
472
|
+
reasoning: true
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
id: "grok-3-fast",
|
|
476
|
+
name: "Grok 3 Fast",
|
|
477
|
+
contextK: 131,
|
|
478
|
+
fast: true
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
id: "grok-imagine-image",
|
|
482
|
+
name: "Grok Imagine (image gen)",
|
|
483
|
+
contextK: 1
|
|
484
|
+
}
|
|
485
|
+
]
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
id: "minimax",
|
|
489
|
+
displayName: "🎯 MiniMax",
|
|
490
|
+
authType: "api_key",
|
|
491
|
+
authLabel: "MiniMax API Key",
|
|
492
|
+
authHint: "platform.minimax.io (international) or minimaxi.com (CN)",
|
|
493
|
+
baseUrl: "https://api.minimax.io/v1",
|
|
494
|
+
models: [
|
|
495
|
+
{
|
|
496
|
+
id: "MiniMax-M2.5",
|
|
497
|
+
name: "MiniMax M2.5",
|
|
498
|
+
contextK: 1e3,
|
|
499
|
+
flagship: true
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
id: "MiniMax-M2.5-highspeed",
|
|
503
|
+
name: "MiniMax M2.5 Highspeed",
|
|
504
|
+
contextK: 1e3,
|
|
505
|
+
fast: true
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
id: "MiniMax-M2.1",
|
|
509
|
+
name: "MiniMax M2.1",
|
|
510
|
+
contextK: 1e3
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
id: "MiniMax-M2.1-highspeed",
|
|
514
|
+
name: "MiniMax M2.1 Highspeed",
|
|
515
|
+
contextK: 1e3,
|
|
516
|
+
fast: true
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
id: "MiniMax-M2",
|
|
520
|
+
name: "MiniMax M2",
|
|
521
|
+
contextK: 1e3
|
|
522
|
+
}
|
|
523
|
+
]
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
id: "moonshot",
|
|
527
|
+
displayName: "🌙 Moonshot (Kimi)",
|
|
528
|
+
authType: "api_key",
|
|
529
|
+
authLabel: "Moonshot API Key",
|
|
530
|
+
authHint: "platform.moonshot.cn",
|
|
531
|
+
baseUrl: "https://api.moonshot.cn/v1",
|
|
532
|
+
models: [
|
|
533
|
+
{
|
|
534
|
+
id: "kimi-k2-thinking",
|
|
535
|
+
name: "Kimi K2 Thinking (reasoning)",
|
|
536
|
+
contextK: 128,
|
|
537
|
+
reasoning: true,
|
|
538
|
+
flagship: true
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
id: "kimi-k2-thinking-turbo",
|
|
542
|
+
name: "Kimi K2 Thinking Turbo",
|
|
543
|
+
contextK: 128,
|
|
544
|
+
reasoning: true,
|
|
545
|
+
fast: true
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
id: "kimi-k2-0905-preview",
|
|
549
|
+
name: "Kimi K2 (Sep 2025 preview)",
|
|
550
|
+
contextK: 128
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
id: "kimi-k2-0711-preview",
|
|
554
|
+
name: "Kimi K2 (Jul 2025 preview)",
|
|
555
|
+
contextK: 128
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
id: "kimi-k2-turbo-preview",
|
|
559
|
+
name: "Kimi K2 Turbo (preview)",
|
|
560
|
+
contextK: 128,
|
|
561
|
+
fast: true
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
id: "kimi-latest",
|
|
565
|
+
name: "Kimi Latest",
|
|
566
|
+
contextK: 128
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
id: "moonshot-v1-128k",
|
|
570
|
+
name: "Moonshot v1 128K",
|
|
571
|
+
contextK: 128
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
id: "moonshot-v1-32k",
|
|
575
|
+
name: "Moonshot v1 32K",
|
|
576
|
+
contextK: 32,
|
|
577
|
+
fast: true
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
id: "moonshot-v1-8k",
|
|
581
|
+
name: "Moonshot v1 8K",
|
|
582
|
+
contextK: 8,
|
|
583
|
+
fast: true
|
|
584
|
+
}
|
|
585
|
+
]
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
id: "qwen",
|
|
589
|
+
displayName: "🐉 Qwen (Alibaba)",
|
|
590
|
+
authType: "api_key",
|
|
591
|
+
authLabel: "DashScope API Key",
|
|
592
|
+
authHint: "dashscope-intl.aliyuncs.com (international)",
|
|
593
|
+
baseUrl: "https://dashscope-intl.aliyuncs.com/compatible-mode/v1",
|
|
594
|
+
models: [
|
|
595
|
+
{
|
|
596
|
+
id: "qwen3-max",
|
|
597
|
+
name: "Qwen3 Max",
|
|
598
|
+
contextK: 128,
|
|
599
|
+
flagship: true,
|
|
600
|
+
reasoning: true
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
id: "qwen3-235b-a22b-thinking",
|
|
604
|
+
name: "Qwen3 235B Thinking",
|
|
605
|
+
contextK: 128,
|
|
606
|
+
reasoning: true
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
id: "qwen3-235b-a22b-instruct",
|
|
610
|
+
name: "Qwen3 235B Instruct",
|
|
611
|
+
contextK: 128
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
id: "qwen-max-latest",
|
|
615
|
+
name: "Qwen Max (latest)",
|
|
616
|
+
contextK: 32
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
id: "qwen-plus-latest",
|
|
620
|
+
name: "Qwen Plus (latest)",
|
|
621
|
+
contextK: 128
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
id: "qwen-turbo-latest",
|
|
625
|
+
name: "Qwen Turbo (latest)",
|
|
626
|
+
contextK: 128,
|
|
627
|
+
fast: true
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
id: "qwen3-coder-plus",
|
|
631
|
+
name: "Qwen3 Coder Plus (code)",
|
|
632
|
+
contextK: 128
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
id: "qwen3-coder-flash",
|
|
636
|
+
name: "Qwen3 Coder Flash (code)",
|
|
637
|
+
contextK: 128,
|
|
638
|
+
fast: true
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
id: "qwen3-vl-plus",
|
|
642
|
+
name: "Qwen3 VL Plus (vision)",
|
|
643
|
+
contextK: 128,
|
|
644
|
+
vision: true
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
id: "qwen3-vl-flash",
|
|
648
|
+
name: "Qwen3 VL Flash (vision)",
|
|
649
|
+
contextK: 128,
|
|
650
|
+
vision: true,
|
|
651
|
+
fast: true
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
id: "qwen2.5-72b-instruct",
|
|
655
|
+
name: "Qwen2.5 72B Instruct",
|
|
656
|
+
contextK: 128
|
|
657
|
+
}
|
|
658
|
+
]
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
id: "zai",
|
|
662
|
+
displayName: "🔧 Z.AI (Zhipu GLM)",
|
|
663
|
+
authType: "api_key",
|
|
664
|
+
authLabel: "Z.AI API Key",
|
|
665
|
+
authHint: "api.z.ai",
|
|
666
|
+
baseUrl: "https://api.z.ai/api/paas/v4",
|
|
667
|
+
models: [
|
|
668
|
+
{
|
|
669
|
+
id: "glm-5",
|
|
670
|
+
name: "GLM-5",
|
|
671
|
+
contextK: 128,
|
|
672
|
+
flagship: true
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
id: "glm-4.7",
|
|
676
|
+
name: "GLM-4.7",
|
|
677
|
+
contextK: 128
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
id: "glm-4.7-flash",
|
|
681
|
+
name: "GLM-4.7 Flash",
|
|
682
|
+
contextK: 128,
|
|
683
|
+
fast: true
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
id: "glm-4.7-flashx",
|
|
687
|
+
name: "GLM-4.7 FlashX",
|
|
688
|
+
contextK: 128,
|
|
689
|
+
fast: true
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
id: "glm-4.6",
|
|
693
|
+
name: "GLM-4.6",
|
|
694
|
+
contextK: 128
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
id: "glm-4.5",
|
|
698
|
+
name: "GLM-4.5",
|
|
699
|
+
contextK: 128
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
id: "glm-4.5-air",
|
|
703
|
+
name: "GLM-4.5 Air",
|
|
704
|
+
contextK: 128
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
id: "glm-4.5-x",
|
|
708
|
+
name: "GLM-4.5 X",
|
|
709
|
+
contextK: 128
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
id: "glm-4.5-airx",
|
|
713
|
+
name: "GLM-4.5 AirX",
|
|
714
|
+
contextK: 128
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
id: "glm-4.5-flash",
|
|
718
|
+
name: "GLM-4.5 Flash",
|
|
719
|
+
contextK: 128,
|
|
720
|
+
fast: true
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
id: "glm-4-32b-0414-128k",
|
|
724
|
+
name: "GLM-4 32B 128K",
|
|
725
|
+
contextK: 128
|
|
726
|
+
}
|
|
727
|
+
]
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
id: "litellm",
|
|
731
|
+
displayName: "🔀 LiteLLM (proxy)",
|
|
732
|
+
authType: "api_key",
|
|
733
|
+
authLabel: "LiteLLM Master Key",
|
|
734
|
+
authHint: "Your self-hosted LiteLLM proxy key",
|
|
735
|
+
models: [{
|
|
736
|
+
id: "gpt-4o",
|
|
737
|
+
name: "GPT-4o (via proxy)",
|
|
738
|
+
contextK: 128,
|
|
739
|
+
flagship: true
|
|
740
|
+
}]
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
id: "cloudflare",
|
|
744
|
+
displayName: "☁️ Cloudflare AI Gateway",
|
|
745
|
+
authType: "api_key",
|
|
746
|
+
authLabel: "Cloudflare API Token",
|
|
747
|
+
authHint: "dash.cloudflare.com → AI → Gateway",
|
|
748
|
+
models: [{
|
|
749
|
+
id: "@cf/meta/llama-3.3-70b-instruct-fp8-fast",
|
|
750
|
+
name: "Llama 3.3 70B (CF)",
|
|
751
|
+
contextK: 128,
|
|
752
|
+
flagship: true
|
|
753
|
+
}]
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
id: "copilot",
|
|
757
|
+
displayName: "🤖 GitHub Copilot",
|
|
758
|
+
authType: "oauth",
|
|
759
|
+
authLabel: "GitHub OAuth Token",
|
|
760
|
+
authHint: "github.com/settings/tokens",
|
|
761
|
+
models: [{
|
|
762
|
+
id: "gpt-4o",
|
|
763
|
+
name: "GPT-4o (Copilot)",
|
|
764
|
+
contextK: 128,
|
|
765
|
+
flagship: true
|
|
766
|
+
}, {
|
|
767
|
+
id: "claude-3-5-sonnet",
|
|
768
|
+
name: "Claude 3.5 Sonnet (Copilot)",
|
|
769
|
+
contextK: 200
|
|
770
|
+
}]
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
id: "groq",
|
|
774
|
+
displayName: "⚡ Groq (Fast Inference)",
|
|
775
|
+
authType: "api_key",
|
|
776
|
+
authLabel: "Groq API Key",
|
|
777
|
+
authHint: "console.groq.com/keys",
|
|
778
|
+
baseUrl: "https://api.groq.com/openai/v1",
|
|
779
|
+
supportsTranscription: true,
|
|
780
|
+
models: [
|
|
781
|
+
{
|
|
782
|
+
id: "groq/compound",
|
|
783
|
+
name: "Groq Compound",
|
|
784
|
+
contextK: 128,
|
|
785
|
+
flagship: true
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
id: "groq/compound-mini",
|
|
789
|
+
name: "Groq Compound Mini",
|
|
790
|
+
contextK: 128,
|
|
791
|
+
fast: true
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
id: "llama-3.3-70b-versatile",
|
|
795
|
+
name: "Llama 3.3 70B Versatile",
|
|
796
|
+
contextK: 128
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
id: "llama-3.1-8b-instant",
|
|
800
|
+
name: "Llama 3.1 8B Instant",
|
|
801
|
+
contextK: 128,
|
|
802
|
+
fast: true
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
id: "meta-llama/llama-4-scout-17b-16e-instruct",
|
|
806
|
+
name: "Llama 4 Scout 17B",
|
|
807
|
+
contextK: 128
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
id: "openai/gpt-oss-120b",
|
|
811
|
+
name: "GPT OSS 120B (via Groq)",
|
|
812
|
+
contextK: 128
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
id: "openai/gpt-oss-20b",
|
|
816
|
+
name: "GPT OSS 20B (via Groq)",
|
|
817
|
+
contextK: 128,
|
|
818
|
+
fast: true
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
id: "qwen/qwen3-32b",
|
|
822
|
+
name: "Qwen3 32B (via Groq)",
|
|
823
|
+
contextK: 128,
|
|
824
|
+
reasoning: true
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
id: "moonshotai/kimi-k2-instruct-0905",
|
|
828
|
+
name: "Kimi K2 (via Groq)",
|
|
829
|
+
contextK: 128
|
|
830
|
+
}
|
|
831
|
+
]
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
id: "mistral",
|
|
835
|
+
displayName: "🌀 Mistral AI",
|
|
836
|
+
authType: "api_key",
|
|
837
|
+
authLabel: "Mistral API Key",
|
|
838
|
+
authHint: "console.mistral.ai/api-keys",
|
|
839
|
+
baseUrl: "https://api.mistral.ai/v1",
|
|
840
|
+
models: [
|
|
841
|
+
{
|
|
842
|
+
id: "mistral-large-2512",
|
|
843
|
+
name: "Mistral Large (Dec 2025)",
|
|
844
|
+
contextK: 128,
|
|
845
|
+
flagship: true
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
id: "magistral-medium-2507",
|
|
849
|
+
name: "Magistral Medium (reasoning)",
|
|
850
|
+
contextK: 128,
|
|
851
|
+
reasoning: true
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
id: "magistral-small-2507",
|
|
855
|
+
name: "Magistral Small (reasoning)",
|
|
856
|
+
contextK: 128,
|
|
857
|
+
reasoning: true,
|
|
858
|
+
fast: true
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
id: "mistral-small-2506",
|
|
862
|
+
name: "Mistral Small (Jun 2025)",
|
|
863
|
+
contextK: 128,
|
|
864
|
+
fast: true
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
id: "codestral-latest",
|
|
868
|
+
name: "Codestral (code)",
|
|
869
|
+
contextK: 256
|
|
870
|
+
}
|
|
871
|
+
]
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
id: "deepseek",
|
|
875
|
+
displayName: "🔬 DeepSeek",
|
|
876
|
+
authType: "api_key",
|
|
877
|
+
authLabel: "DeepSeek API Key",
|
|
878
|
+
authHint: "platform.deepseek.com/api_keys",
|
|
879
|
+
baseUrl: "https://api.deepseek.com/v1",
|
|
880
|
+
models: [{
|
|
881
|
+
id: "deepseek-chat",
|
|
882
|
+
name: "DeepSeek V3",
|
|
883
|
+
contextK: 64,
|
|
884
|
+
flagship: true
|
|
885
|
+
}, {
|
|
886
|
+
id: "deepseek-reasoner",
|
|
887
|
+
name: "DeepSeek R1 (reasoning)",
|
|
888
|
+
contextK: 64,
|
|
889
|
+
reasoning: true
|
|
890
|
+
}]
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
id: "perplexity",
|
|
894
|
+
displayName: "🔍 Perplexity (Search-augmented)",
|
|
895
|
+
authType: "api_key",
|
|
896
|
+
authLabel: "Perplexity API Key",
|
|
897
|
+
authHint: "perplexity.ai/settings/api",
|
|
898
|
+
baseUrl: "https://api.perplexity.ai",
|
|
899
|
+
models: [
|
|
900
|
+
{
|
|
901
|
+
id: "sonar-deep-research",
|
|
902
|
+
name: "Sonar Deep Research",
|
|
903
|
+
contextK: 128,
|
|
904
|
+
reasoning: true,
|
|
905
|
+
flagship: true
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
id: "sonar-reasoning-pro",
|
|
909
|
+
name: "Sonar Reasoning Pro",
|
|
910
|
+
contextK: 128,
|
|
911
|
+
reasoning: true
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
id: "sonar-pro",
|
|
915
|
+
name: "Sonar Pro (search)",
|
|
916
|
+
contextK: 200
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
id: "sonar",
|
|
920
|
+
name: "Sonar (search, fast)",
|
|
921
|
+
contextK: 128,
|
|
922
|
+
fast: true
|
|
923
|
+
}
|
|
924
|
+
]
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
id: "cohere",
|
|
928
|
+
displayName: "🧬 Cohere",
|
|
929
|
+
authType: "api_key",
|
|
930
|
+
authLabel: "Cohere API Key",
|
|
931
|
+
authHint: "dashboard.cohere.com/api-keys",
|
|
932
|
+
baseUrl: "https://api.cohere.ai/compatibility/v1",
|
|
933
|
+
models: [{
|
|
934
|
+
id: "command-a-03-2025",
|
|
935
|
+
name: "Command A (Mar 2025)",
|
|
936
|
+
contextK: 256,
|
|
937
|
+
flagship: true
|
|
938
|
+
}, {
|
|
939
|
+
id: "command-a-vision-07-2025",
|
|
940
|
+
name: "Command A Vision (Jul 2025)",
|
|
941
|
+
contextK: 256,
|
|
942
|
+
vision: true
|
|
943
|
+
}]
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
id: "huggingface",
|
|
947
|
+
displayName: "🤗 Hugging Face",
|
|
948
|
+
authType: "api_key",
|
|
949
|
+
authLabel: "HuggingFace API Token",
|
|
950
|
+
authHint: "huggingface.co/settings/tokens",
|
|
951
|
+
baseUrl: "https://router.huggingface.co/v1",
|
|
952
|
+
models: [
|
|
953
|
+
{
|
|
954
|
+
id: "Qwen/Qwen3-Coder-480B-A35B-Instruct",
|
|
955
|
+
name: "Qwen3 Coder 480B (code)",
|
|
956
|
+
contextK: 128,
|
|
957
|
+
flagship: true
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
id: "Qwen/Qwen2.5-72B-Instruct",
|
|
961
|
+
name: "Qwen 2.5 72B",
|
|
962
|
+
contextK: 128
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
id: "meta-llama/Llama-3.3-70B-Instruct",
|
|
966
|
+
name: "Llama 3.3 70B",
|
|
967
|
+
contextK: 128
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
id: "mistralai/Mistral-7B-Instruct-v0.3",
|
|
971
|
+
name: "Mistral 7B",
|
|
972
|
+
contextK: 32,
|
|
973
|
+
fast: true
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
id: "zai-org/GLM-4.5",
|
|
977
|
+
name: "GLM-4.5",
|
|
978
|
+
contextK: 128
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
id: "openai/gpt-oss-120b",
|
|
982
|
+
name: "GPT-OSS 120B",
|
|
983
|
+
contextK: 128
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
id: "__manual__",
|
|
987
|
+
name: "Enter full repo ID (e.g. org/model-name)",
|
|
988
|
+
contextK: 128
|
|
989
|
+
}
|
|
990
|
+
]
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
id: "ollama",
|
|
994
|
+
displayName: "🦙 Ollama (Local)",
|
|
995
|
+
authType: "none",
|
|
996
|
+
authLabel: "No API key needed",
|
|
997
|
+
authHint: "ollama.ai — run `ollama serve` first",
|
|
998
|
+
baseUrl: "http://localhost:11434/v1",
|
|
999
|
+
models: [
|
|
1000
|
+
{
|
|
1001
|
+
id: "llama3.3",
|
|
1002
|
+
name: "Llama 3.3 (local)",
|
|
1003
|
+
contextK: 128,
|
|
1004
|
+
flagship: true
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
id: "mistral",
|
|
1008
|
+
name: "Mistral (local)",
|
|
1009
|
+
contextK: 32
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
id: "codellama",
|
|
1013
|
+
name: "CodeLlama (local)",
|
|
1014
|
+
contextK: 16
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
id: "phi4",
|
|
1018
|
+
name: "Phi-4 (local)",
|
|
1019
|
+
contextK: 16,
|
|
1020
|
+
fast: true
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
id: "__manual__",
|
|
1024
|
+
name: "Enter model name manually",
|
|
1025
|
+
contextK: 128
|
|
1026
|
+
}
|
|
1027
|
+
]
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
id: "lmstudio",
|
|
1031
|
+
displayName: "🖥️ LM Studio (Local)",
|
|
1032
|
+
authType: "none",
|
|
1033
|
+
authLabel: "No API key needed",
|
|
1034
|
+
authHint: "lmstudio.ai — enable local server in app",
|
|
1035
|
+
baseUrl: "http://localhost:1234/v1",
|
|
1036
|
+
models: [{
|
|
1037
|
+
id: "__manual__",
|
|
1038
|
+
name: "Enter loaded model ID",
|
|
1039
|
+
contextK: 128,
|
|
1040
|
+
flagship: true
|
|
1041
|
+
}]
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
id: "custom",
|
|
1045
|
+
displayName: "🔌 Custom (OpenAI-compatible API)",
|
|
1046
|
+
authType: "api_key",
|
|
1047
|
+
authLabel: "API Key",
|
|
1048
|
+
authHint: "Any OpenAI-compatible /chat/completions API (e.g. Ads Power, Proxies, new LLM APIs)",
|
|
1049
|
+
models: [{
|
|
1050
|
+
id: "__manual__",
|
|
1051
|
+
name: "Enter model ID manually",
|
|
1052
|
+
contextK: 128,
|
|
1053
|
+
flagship: true
|
|
1054
|
+
}]
|
|
1055
|
+
}
|
|
1056
|
+
];
|
|
1057
|
+
} });
|
|
1058
|
+
|
|
1059
|
+
//#endregion
|
|
1060
|
+
Object.defineProperty(exports, 'PROVIDERS', {
|
|
1061
|
+
enumerable: true,
|
|
1062
|
+
get: function () {
|
|
1063
|
+
return PROVIDERS;
|
|
1064
|
+
}
|
|
1065
|
+
});
|
|
1066
|
+
Object.defineProperty(exports, 'formatModel', {
|
|
1067
|
+
enumerable: true,
|
|
1068
|
+
get: function () {
|
|
1069
|
+
return formatModel;
|
|
1070
|
+
}
|
|
1071
|
+
});
|
|
1072
|
+
Object.defineProperty(exports, 'getProvider', {
|
|
1073
|
+
enumerable: true,
|
|
1074
|
+
get: function () {
|
|
1075
|
+
return getProvider;
|
|
1076
|
+
}
|
|
1077
|
+
});
|
|
1078
|
+
Object.defineProperty(exports, 'getTranscriptionProviders', {
|
|
1079
|
+
enumerable: true,
|
|
1080
|
+
get: function () {
|
|
1081
|
+
return getTranscriptionProviders;
|
|
1082
|
+
}
|
|
1083
|
+
});
|
|
1084
|
+
Object.defineProperty(exports, 'init_providers', {
|
|
1085
|
+
enumerable: true,
|
|
1086
|
+
get: function () {
|
|
1087
|
+
return init_providers;
|
|
1088
|
+
}
|
|
1089
|
+
});
|