hyperclaw 5.1.2 → 5.1.5

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.
Files changed (63) hide show
  1. package/dist/chat-BQ0GbKEY.js +276 -0
  2. package/dist/chat-CUrMkNYY.js +276 -0
  3. package/dist/chat-hm_wY8yJ.js +276 -0
  4. package/dist/daemon-BHo7o7Lj.js +316 -0
  5. package/dist/daemon-C2xm6d33.js +5 -0
  6. package/dist/daemon-CQ0cZPYG.js +5 -0
  7. package/dist/daemon-DB193nzg.js +316 -0
  8. package/dist/daemon-DJRDLFmN.js +5 -0
  9. package/dist/daemon-Dkl9otB1.js +316 -0
  10. package/dist/engine-BWp7hz51.js +7 -0
  11. package/dist/engine-Bhr6Wb4V.js +7 -0
  12. package/dist/engine-DE6jeG0c.js +305 -0
  13. package/dist/engine-DOtwAgRq.js +305 -0
  14. package/dist/engine-DwMtuOA_.js +305 -0
  15. package/dist/engine-fJwnOetl.js +7 -0
  16. package/dist/hyperclawbot-BwXiNPsb.js +505 -0
  17. package/dist/hyperclawbot-CqR5i529.js +505 -0
  18. package/dist/hyperclawbot-DY9AuMAx.js +505 -0
  19. package/dist/inference-B2sk_X7I.js +2754 -0
  20. package/dist/inference-CI3mQLEm.js +6 -0
  21. package/dist/inference-CJrBFCGJ.js +2823 -0
  22. package/dist/inference-Cs9wQgPT.js +6 -0
  23. package/dist/memory-auto-B4CmnLPg.js +306 -0
  24. package/dist/memory-auto-PuizGKPS.js +5 -0
  25. package/dist/memory-auto-pOm8K1q7.js +306 -0
  26. package/dist/memory-auto-qReBGhjq.js +5 -0
  27. package/dist/onboard-6GouN1JR.js +4149 -0
  28. package/dist/onboard-B5M5d16e.js +4149 -0
  29. package/dist/onboard-BqVL-sv0.js +11 -0
  30. package/dist/onboard-BzIJuMrE.js +4149 -0
  31. package/dist/onboard-CBYiK0ua.js +11 -0
  32. package/dist/onboard-C_OQnz-8.js +11 -0
  33. package/dist/orchestrator-BU9zjs6B.js +189 -0
  34. package/dist/orchestrator-DOJwTJ2K.js +6 -0
  35. package/dist/orchestrator-DZi8nMUZ.js +6 -0
  36. package/dist/orchestrator-Dw0JtNuq.js +6 -0
  37. package/dist/orchestrator-UUb37OO7.js +189 -0
  38. package/dist/orchestrator-wb4uHuk6.js +189 -0
  39. package/dist/providers-Bp3UtxNo.js +663 -0
  40. package/dist/providers-v_cyyxUu.js +5 -0
  41. package/dist/run-main.js +24 -24
  42. package/dist/server-BuMlhbiO.js +4 -0
  43. package/dist/server-CR0zqduf.js +1255 -0
  44. package/dist/server-CZ9lwJZg.js +1255 -0
  45. package/dist/server-DHQRCB8c.js +4 -0
  46. package/dist/server-DNnB7eC-.js +1255 -0
  47. package/dist/server-VUX--d4O.js +4 -0
  48. package/dist/skill-runtime-BaH1_ovB.js +102 -0
  49. package/dist/skill-runtime-BgpmdVRe.js +102 -0
  50. package/dist/skill-runtime-Dg2ktHhx.js +5 -0
  51. package/dist/skill-runtime-IQq_5cce.js +102 -0
  52. package/dist/skill-runtime-ZGBM_YdU.js +5 -0
  53. package/dist/skill-runtime-kh5FqWvD.js +5 -0
  54. package/dist/src-BZz624EE.js +458 -0
  55. package/dist/src-BoFAwx3J.js +63 -0
  56. package/dist/src-C0Quc03q.js +63 -0
  57. package/dist/src-CcoHbuhQ.js +63 -0
  58. package/dist/src-D1N3PhlW.js +458 -0
  59. package/dist/src-DHV8BcRS.js +458 -0
  60. package/dist/sub-agent-tools-Bo_suKJn.js +39 -0
  61. package/dist/sub-agent-tools-C3rsBRFE.js +39 -0
  62. package/dist/sub-agent-tools-jPcSSxbk.js +39 -0
  63. package/package.json +1 -1
@@ -0,0 +1,663 @@
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-5",
33
+ name: "Claude Opus 4.5",
34
+ contextK: 200,
35
+ reasoning: true,
36
+ flagship: true
37
+ },
38
+ {
39
+ id: "claude-sonnet-4-5",
40
+ name: "Claude Sonnet 4.5",
41
+ contextK: 200,
42
+ reasoning: true
43
+ },
44
+ {
45
+ id: "claude-haiku-4-5",
46
+ name: "Claude Haiku 4.5",
47
+ contextK: 200,
48
+ fast: true
49
+ }
50
+ ]
51
+ },
52
+ {
53
+ id: "anthropic-oauth",
54
+ displayName: "🎭 Anthropic (OAuth — Claude Code/Max)",
55
+ authType: "oauth",
56
+ authLabel: "Claude OAuth credentials",
57
+ authHint: "Reuses ~/.claude/.credentials.json (Claude Code CLI) or macOS Keychain \"Claude Code-credentials\"",
58
+ models: [{
59
+ id: "claude-opus-4-5",
60
+ name: "Claude Opus 4.5",
61
+ contextK: 200,
62
+ reasoning: true,
63
+ flagship: true
64
+ }, {
65
+ id: "claude-sonnet-4-5",
66
+ name: "Claude Sonnet 4.5",
67
+ contextK: 200,
68
+ reasoning: true
69
+ }]
70
+ },
71
+ {
72
+ id: "anthropic-setup-token",
73
+ displayName: "🎭 Anthropic (setup-token)",
74
+ authType: "api_key",
75
+ authLabel: "Anthropic setup-token",
76
+ authHint: "Run `claude setup-token` on any machine → paste the token here",
77
+ models: [{
78
+ id: "claude-opus-4-5",
79
+ name: "Claude Opus 4.5",
80
+ contextK: 200,
81
+ reasoning: true,
82
+ flagship: true
83
+ }, {
84
+ id: "claude-sonnet-4-5",
85
+ name: "Claude Sonnet 4.5",
86
+ contextK: 200,
87
+ reasoning: true
88
+ }]
89
+ },
90
+ {
91
+ id: "vercel-ai",
92
+ displayName: "▲ Vercel AI Gateway",
93
+ authType: "api_key",
94
+ authLabel: "Vercel AI Gateway API Key",
95
+ authHint: "vercel.com/docs/ai — multi-model proxy (AI_GATEWAY_API_KEY)",
96
+ baseUrl: "https://ai-gateway.vercel.sh/v1",
97
+ models: [
98
+ {
99
+ id: "openai/gpt-4o",
100
+ name: "GPT-4o (via Vercel)",
101
+ contextK: 128,
102
+ flagship: true
103
+ },
104
+ {
105
+ id: "anthropic/claude-sonnet-4-5",
106
+ name: "Claude Sonnet (via Vercel)",
107
+ contextK: 200
108
+ },
109
+ {
110
+ id: "google/gemini-2.0-flash",
111
+ name: "Gemini 2.0 Flash (via Vercel)",
112
+ contextK: 1e3,
113
+ fast: true
114
+ }
115
+ ]
116
+ },
117
+ {
118
+ id: "opencode-zen",
119
+ displayName: "🧘 OpenCode Zen (multi-model proxy)",
120
+ authType: "api_key",
121
+ authLabel: "OpenCode Zen API Key",
122
+ authHint: "opencode.ai/auth — OPENCODE_API_KEY",
123
+ baseUrl: "https://api.opencode.ai/v1",
124
+ models: [{
125
+ id: "auto",
126
+ name: "Auto (best available)",
127
+ contextK: 200,
128
+ flagship: true
129
+ }]
130
+ },
131
+ {
132
+ id: "openrouter",
133
+ displayName: "🌐 OpenRouter",
134
+ authType: "api_key",
135
+ authLabel: "OpenRouter API Key",
136
+ authHint: "openrouter.ai/keys",
137
+ baseUrl: "https://openrouter.ai/api/v1",
138
+ supportsTranscription: true,
139
+ models: [
140
+ {
141
+ id: "openrouter/auto",
142
+ name: "Auto (best available)",
143
+ contextK: 200,
144
+ flagship: true
145
+ },
146
+ {
147
+ id: "anthropic/claude-opus-4.6",
148
+ name: "Claude Opus 4.6 (via OR)",
149
+ contextK: 200,
150
+ reasoning: true
151
+ },
152
+ {
153
+ id: "anthropic/claude-sonnet-4.5",
154
+ name: "Claude Sonnet 4.5 (via OR)",
155
+ contextK: 200
156
+ },
157
+ {
158
+ id: "openai/gpt-4o",
159
+ name: "GPT-4o",
160
+ contextK: 128,
161
+ vision: true
162
+ },
163
+ {
164
+ id: "openai/o3",
165
+ name: "o3 (reasoning)",
166
+ contextK: 200,
167
+ reasoning: true
168
+ },
169
+ {
170
+ id: "google/gemini-2.0-flash",
171
+ name: "Gemini 2.0 Flash",
172
+ contextK: 1e3,
173
+ fast: true
174
+ },
175
+ {
176
+ id: "google/gemini-2.5-pro",
177
+ name: "Gemini 2.5 Pro",
178
+ contextK: 1e3,
179
+ reasoning: true
180
+ },
181
+ {
182
+ id: "x-ai/grok-3",
183
+ name: "Grok 3",
184
+ contextK: 131,
185
+ reasoning: true
186
+ },
187
+ {
188
+ id: "deepseek/deepseek-r1",
189
+ name: "DeepSeek R1",
190
+ contextK: 64,
191
+ reasoning: true
192
+ },
193
+ {
194
+ id: "meta-llama/llama-3.3-70b-instruct",
195
+ name: "Llama 3.3 70B",
196
+ contextK: 128
197
+ },
198
+ {
199
+ id: "qwen/qwen-2.5-72b-instruct",
200
+ name: "Qwen 2.5 72B",
201
+ contextK: 128
202
+ },
203
+ {
204
+ id: "mistralai/mistral-large",
205
+ name: "Mistral Large",
206
+ contextK: 128
207
+ }
208
+ ]
209
+ },
210
+ {
211
+ id: "openai",
212
+ displayName: "🧠 OpenAI",
213
+ authType: "api_key",
214
+ authLabel: "OpenAI API Key",
215
+ authHint: "platform.openai.com/api-keys",
216
+ baseUrl: "https://api.openai.com/v1",
217
+ supportsTranscription: true,
218
+ models: [
219
+ {
220
+ id: "gpt-4o",
221
+ name: "GPT-4o",
222
+ contextK: 128,
223
+ vision: true,
224
+ flagship: true
225
+ },
226
+ {
227
+ id: "gpt-4o-mini",
228
+ name: "GPT-4o Mini",
229
+ contextK: 128,
230
+ fast: true
231
+ },
232
+ {
233
+ id: "o3",
234
+ name: "o3 (reasoning)",
235
+ contextK: 200,
236
+ reasoning: true
237
+ },
238
+ {
239
+ id: "o4-mini",
240
+ name: "o4-mini (reasoning)",
241
+ contextK: 200,
242
+ reasoning: true,
243
+ fast: true
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ id: "google",
249
+ displayName: "🔍 Google",
250
+ authType: "api_key",
251
+ authLabel: "Google AI API Key",
252
+ authHint: "aistudio.google.com/app/apikey",
253
+ baseUrl: "https://generativelanguage.googleapis.com/v1beta/openai",
254
+ supportsTranscription: true,
255
+ models: [
256
+ {
257
+ id: "gemini-2.5-pro",
258
+ name: "Gemini 2.5 Pro",
259
+ contextK: 1e3,
260
+ reasoning: true,
261
+ flagship: true
262
+ },
263
+ {
264
+ id: "gemini-2.0-flash",
265
+ name: "Gemini 2.0 Flash",
266
+ contextK: 1e3,
267
+ fast: true
268
+ },
269
+ {
270
+ id: "gemini-1.5-pro",
271
+ name: "Gemini 1.5 Pro",
272
+ contextK: 2e3
273
+ }
274
+ ]
275
+ },
276
+ {
277
+ id: "xai",
278
+ displayName: "⚡ xAI (Grok)",
279
+ authType: "api_key",
280
+ authLabel: "xAI API Key",
281
+ authHint: "console.x.ai",
282
+ baseUrl: "https://api.x.ai/v1",
283
+ models: [{
284
+ id: "grok-3",
285
+ name: "Grok 3",
286
+ contextK: 131,
287
+ reasoning: true,
288
+ flagship: true
289
+ }, {
290
+ id: "grok-3-mini",
291
+ name: "Grok 3 Mini",
292
+ contextK: 131,
293
+ fast: true
294
+ }]
295
+ },
296
+ {
297
+ id: "minimax",
298
+ displayName: "🎯 MiniMax",
299
+ authType: "api_key",
300
+ authLabel: "MiniMax API Key",
301
+ authHint: "platform.minimaxi.com",
302
+ baseUrl: "https://api.minimaxi.chat/v1",
303
+ models: [{
304
+ id: "MiniMax-Text-01",
305
+ name: "MiniMax Text-01",
306
+ contextK: 1e3,
307
+ flagship: true
308
+ }, {
309
+ id: "abab6.5s-chat",
310
+ name: "ABAB 6.5S",
311
+ contextK: 245
312
+ }]
313
+ },
314
+ {
315
+ id: "moonshot",
316
+ displayName: "🌙 Moonshot (Kimi)",
317
+ authType: "api_key",
318
+ authLabel: "Moonshot API Key",
319
+ authHint: "platform.moonshot.cn",
320
+ baseUrl: "https://api.moonshot.cn/v1",
321
+ models: [{
322
+ id: "moonshot-v1-128k",
323
+ name: "Moonshot v1 128K",
324
+ contextK: 128,
325
+ flagship: true
326
+ }, {
327
+ id: "moonshot-v1-8k",
328
+ name: "Moonshot v1 8K",
329
+ contextK: 8,
330
+ fast: true
331
+ }]
332
+ },
333
+ {
334
+ id: "qwen",
335
+ displayName: "🐉 Qwen (Alibaba)",
336
+ authType: "api_key",
337
+ authLabel: "DashScope API Key",
338
+ authHint: "dashscope.aliyuncs.com",
339
+ baseUrl: "https://dashscope-intl.aliyuncs.com/compatible-mode/v1",
340
+ models: [
341
+ {
342
+ id: "qwen-max",
343
+ name: "Qwen Max",
344
+ contextK: 32,
345
+ flagship: true
346
+ },
347
+ {
348
+ id: "qwen-plus",
349
+ name: "Qwen Plus",
350
+ contextK: 128
351
+ },
352
+ {
353
+ id: "qwen-turbo",
354
+ name: "Qwen Turbo",
355
+ contextK: 128,
356
+ fast: true
357
+ },
358
+ {
359
+ id: "qwen3-235b-a22b",
360
+ name: "Qwen3 235B",
361
+ contextK: 32,
362
+ reasoning: true
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ id: "zai",
368
+ displayName: "🔧 Z.AI",
369
+ authType: "api_key",
370
+ authLabel: "Z.AI API Key",
371
+ authHint: "z.ai",
372
+ models: [{
373
+ id: "glm-4-plus",
374
+ name: "GLM-4 Plus",
375
+ contextK: 128,
376
+ flagship: true
377
+ }, {
378
+ id: "glm-4-flash",
379
+ name: "GLM-4 Flash",
380
+ contextK: 128,
381
+ fast: true
382
+ }]
383
+ },
384
+ {
385
+ id: "litellm",
386
+ displayName: "🔀 LiteLLM (proxy)",
387
+ authType: "api_key",
388
+ authLabel: "LiteLLM Master Key",
389
+ authHint: "Your self-hosted LiteLLM proxy key",
390
+ models: [{
391
+ id: "gpt-4o",
392
+ name: "GPT-4o (via proxy)",
393
+ contextK: 128,
394
+ flagship: true
395
+ }]
396
+ },
397
+ {
398
+ id: "cloudflare",
399
+ displayName: "☁️ Cloudflare AI Gateway",
400
+ authType: "api_key",
401
+ authLabel: "Cloudflare API Token",
402
+ authHint: "dash.cloudflare.com → AI → Gateway",
403
+ models: [{
404
+ id: "@cf/meta/llama-3.3-70b-instruct-fp8-fast",
405
+ name: "Llama 3.3 70B (CF)",
406
+ contextK: 128,
407
+ flagship: true
408
+ }]
409
+ },
410
+ {
411
+ id: "copilot",
412
+ displayName: "🤖 GitHub Copilot",
413
+ authType: "oauth",
414
+ authLabel: "GitHub OAuth Token",
415
+ authHint: "github.com/settings/tokens",
416
+ models: [{
417
+ id: "gpt-4o",
418
+ name: "GPT-4o (Copilot)",
419
+ contextK: 128,
420
+ flagship: true
421
+ }, {
422
+ id: "claude-sonnet-4-5",
423
+ name: "Claude Sonnet (Copilot)",
424
+ contextK: 200
425
+ }]
426
+ },
427
+ {
428
+ id: "groq",
429
+ displayName: "⚡ Groq (Fast Inference)",
430
+ authType: "api_key",
431
+ authLabel: "Groq API Key",
432
+ authHint: "console.groq.com/keys",
433
+ baseUrl: "https://api.groq.com/openai/v1",
434
+ models: [
435
+ {
436
+ id: "llama-3.3-70b-versatile",
437
+ name: "Llama 3.3 70B Versatile",
438
+ contextK: 128,
439
+ flagship: true
440
+ },
441
+ {
442
+ id: "llama-3.1-8b-instant",
443
+ name: "Llama 3.1 8B Instant",
444
+ contextK: 128,
445
+ fast: true
446
+ },
447
+ {
448
+ id: "mixtral-8x7b-32768",
449
+ name: "Mixtral 8x7B",
450
+ contextK: 32
451
+ },
452
+ {
453
+ id: "gemma2-9b-it",
454
+ name: "Gemma 2 9B",
455
+ contextK: 8,
456
+ fast: true
457
+ }
458
+ ]
459
+ },
460
+ {
461
+ id: "mistral",
462
+ displayName: "🌀 Mistral AI",
463
+ authType: "api_key",
464
+ authLabel: "Mistral API Key",
465
+ authHint: "console.mistral.ai/api-keys",
466
+ baseUrl: "https://api.mistral.ai/v1",
467
+ models: [
468
+ {
469
+ id: "mistral-large-latest",
470
+ name: "Mistral Large",
471
+ contextK: 128,
472
+ flagship: true
473
+ },
474
+ {
475
+ id: "mistral-medium-latest",
476
+ name: "Mistral Medium",
477
+ contextK: 128
478
+ },
479
+ {
480
+ id: "mistral-small-latest",
481
+ name: "Mistral Small",
482
+ contextK: 128,
483
+ fast: true
484
+ },
485
+ {
486
+ id: "codestral-latest",
487
+ name: "Codestral (code)",
488
+ contextK: 256
489
+ }
490
+ ]
491
+ },
492
+ {
493
+ id: "deepseek",
494
+ displayName: "🔬 DeepSeek",
495
+ authType: "api_key",
496
+ authLabel: "DeepSeek API Key",
497
+ authHint: "platform.deepseek.com/api_keys",
498
+ baseUrl: "https://api.deepseek.com/v1",
499
+ models: [{
500
+ id: "deepseek-chat",
501
+ name: "DeepSeek V3",
502
+ contextK: 64,
503
+ flagship: true
504
+ }, {
505
+ id: "deepseek-reasoner",
506
+ name: "DeepSeek R1 (reasoning)",
507
+ contextK: 64,
508
+ reasoning: true
509
+ }]
510
+ },
511
+ {
512
+ id: "perplexity",
513
+ displayName: "🔍 Perplexity (Search-augmented)",
514
+ authType: "api_key",
515
+ authLabel: "Perplexity API Key",
516
+ authHint: "perplexity.ai/settings/api",
517
+ baseUrl: "https://api.perplexity.ai",
518
+ models: [
519
+ {
520
+ id: "sonar-pro",
521
+ name: "Sonar Pro (search)",
522
+ contextK: 200,
523
+ flagship: true
524
+ },
525
+ {
526
+ id: "sonar",
527
+ name: "Sonar (search, fast)",
528
+ contextK: 128,
529
+ fast: true
530
+ },
531
+ {
532
+ id: "sonar-reasoning",
533
+ name: "Sonar Reasoning",
534
+ contextK: 128,
535
+ reasoning: true
536
+ }
537
+ ]
538
+ },
539
+ {
540
+ id: "huggingface",
541
+ displayName: "🤗 Hugging Face",
542
+ authType: "api_key",
543
+ authLabel: "HuggingFace API Token",
544
+ authHint: "huggingface.co/settings/tokens",
545
+ baseUrl: "https://api-inference.huggingface.co/v1",
546
+ models: [
547
+ {
548
+ id: "Qwen/Qwen2.5-72B-Instruct",
549
+ name: "Qwen 2.5 72B",
550
+ contextK: 128,
551
+ flagship: true
552
+ },
553
+ {
554
+ id: "meta-llama/Llama-3.3-70B-Instruct",
555
+ name: "Llama 3.3 70B",
556
+ contextK: 128
557
+ },
558
+ {
559
+ id: "mistralai/Mistral-7B-Instruct-v0.3",
560
+ name: "Mistral 7B",
561
+ contextK: 32,
562
+ fast: true
563
+ }
564
+ ]
565
+ },
566
+ {
567
+ id: "ollama",
568
+ displayName: "🦙 Ollama (Local)",
569
+ authType: "none",
570
+ authLabel: "No API key needed",
571
+ authHint: "ollama.ai — run `ollama serve` first",
572
+ baseUrl: "http://localhost:11434/v1",
573
+ models: [
574
+ {
575
+ id: "llama3.3",
576
+ name: "Llama 3.3 (local)",
577
+ contextK: 128,
578
+ flagship: true
579
+ },
580
+ {
581
+ id: "mistral",
582
+ name: "Mistral (local)",
583
+ contextK: 32
584
+ },
585
+ {
586
+ id: "codellama",
587
+ name: "CodeLlama (local)",
588
+ contextK: 16
589
+ },
590
+ {
591
+ id: "phi4",
592
+ name: "Phi-4 (local)",
593
+ contextK: 16,
594
+ fast: true
595
+ },
596
+ {
597
+ id: "__manual__",
598
+ name: "Enter model name manually",
599
+ contextK: 128
600
+ }
601
+ ]
602
+ },
603
+ {
604
+ id: "lmstudio",
605
+ displayName: "🖥️ LM Studio (Local)",
606
+ authType: "none",
607
+ authLabel: "No API key needed",
608
+ authHint: "lmstudio.ai — enable local server in app",
609
+ baseUrl: "http://localhost:1234/v1",
610
+ models: [{
611
+ id: "__manual__",
612
+ name: "Enter loaded model ID",
613
+ contextK: 128,
614
+ flagship: true
615
+ }]
616
+ },
617
+ {
618
+ id: "custom",
619
+ displayName: "🔌 Custom (OpenAI-compatible API)",
620
+ authType: "api_key",
621
+ authLabel: "API Key",
622
+ authHint: "Any OpenAI-compatible /chat/completions API (e.g. Ads Power, Proxies, new LLM APIs)",
623
+ models: [{
624
+ id: "__manual__",
625
+ name: "Enter model ID manually",
626
+ contextK: 128,
627
+ flagship: true
628
+ }]
629
+ }
630
+ ];
631
+ } });
632
+
633
+ //#endregion
634
+ Object.defineProperty(exports, 'PROVIDERS', {
635
+ enumerable: true,
636
+ get: function () {
637
+ return PROVIDERS;
638
+ }
639
+ });
640
+ Object.defineProperty(exports, 'formatModel', {
641
+ enumerable: true,
642
+ get: function () {
643
+ return formatModel;
644
+ }
645
+ });
646
+ Object.defineProperty(exports, 'getProvider', {
647
+ enumerable: true,
648
+ get: function () {
649
+ return getProvider;
650
+ }
651
+ });
652
+ Object.defineProperty(exports, 'getTranscriptionProviders', {
653
+ enumerable: true,
654
+ get: function () {
655
+ return getTranscriptionProviders;
656
+ }
657
+ });
658
+ Object.defineProperty(exports, 'init_providers', {
659
+ enumerable: true,
660
+ get: function () {
661
+ return init_providers;
662
+ }
663
+ });
@@ -0,0 +1,5 @@
1
+ const require_chunk = require('./chunk-jS-bbMI5.js');
2
+ const require_providers = require('./providers-Bp3UtxNo.js');
3
+
4
+ require_providers.init_providers();
5
+ exports.getProvider = require_providers.getProvider;