@mate-academy/llm-gateway 6.0.0 → 6.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.
Files changed (103) hide show
  1. package/dist/LLMError.d.ts +12 -0
  2. package/dist/LLMError.js +36 -0
  3. package/dist/LLMError.js.map +1 -0
  4. package/dist/LLMService.constants.d.ts +792 -2
  5. package/dist/LLMService.constants.js +5 -1
  6. package/dist/LLMService.constants.js.map +1 -1
  7. package/dist/LLMService.typedefs.d.ts +24 -2
  8. package/dist/LLMService.typedefs.js +1 -0
  9. package/dist/LLMService.typedefs.js.map +1 -1
  10. package/dist/index.d.ts +1 -0
  11. package/dist/index.js +1 -0
  12. package/dist/index.js.map +1 -1
  13. package/dist/providers/GoogleGenerativeAI/GoogleGenerativeAI.constants.d.ts +72 -0
  14. package/dist/providers/GoogleGenerativeAI/GoogleGenerativeAI.constants.js +6 -0
  15. package/dist/providers/GoogleGenerativeAI/GoogleGenerativeAI.constants.js.map +1 -1
  16. package/dist/providers/GoogleGenerativeAI/services/GoogleGenerativeAIAssistance.service.d.ts +8 -7
  17. package/dist/providers/GoogleGenerativeAI/services/GoogleGenerativeAIAssistance.service.js +217 -31
  18. package/dist/providers/GoogleGenerativeAI/services/GoogleGenerativeAIAssistance.service.js.map +1 -1
  19. package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +884 -0
  20. package/dist/providers/LLMAPI/LLMAPI.constants.js +282 -0
  21. package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -0
  22. package/dist/providers/LLMAPI/LLMAPI.entity.d.ts +6 -0
  23. package/dist/providers/LLMAPI/LLMAPI.entity.js +49 -0
  24. package/dist/providers/LLMAPI/LLMAPI.entity.js.map +1 -0
  25. package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +48 -0
  26. package/dist/providers/LLMAPI/LLMAPI.typedefs.js +46 -0
  27. package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -0
  28. package/dist/providers/LLMAPI/LLMAPIService.factory.d.ts +6 -0
  29. package/dist/providers/LLMAPI/LLMAPIService.factory.js +19 -0
  30. package/dist/providers/LLMAPI/LLMAPIService.factory.js.map +1 -0
  31. package/dist/providers/LLMAPI/index.d.ts +6 -0
  32. package/dist/providers/LLMAPI/index.js +23 -0
  33. package/dist/providers/LLMAPI/index.js.map +1 -0
  34. package/dist/providers/LLMAPI/schemas/LLMAPISchemaAdapter.d.ts +3 -0
  35. package/dist/providers/LLMAPI/schemas/LLMAPISchemaAdapter.js +8 -0
  36. package/dist/providers/LLMAPI/schemas/LLMAPISchemaAdapter.js.map +1 -0
  37. package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.d.ts +34 -0
  38. package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.js +497 -0
  39. package/dist/providers/LLMAPI/services/LLMAPIAssistance.service.js.map +1 -0
  40. package/dist/providers/LLMAPI/services/LLMAPICompletion.service.d.ts +18 -0
  41. package/dist/providers/LLMAPI/services/LLMAPICompletion.service.js +138 -0
  42. package/dist/providers/LLMAPI/services/LLMAPICompletion.service.js.map +1 -0
  43. package/dist/providers/LLMAPI/services/index.d.ts +2 -0
  44. package/dist/providers/LLMAPI/services/index.js +19 -0
  45. package/dist/providers/LLMAPI/services/index.js.map +1 -0
  46. package/dist/providers/LLMAPI/utilities/LLMAPIJsonFixer.d.ts +22 -0
  47. package/dist/providers/LLMAPI/utilities/LLMAPIJsonFixer.js +228 -0
  48. package/dist/providers/LLMAPI/utilities/LLMAPIJsonFixer.js.map +1 -0
  49. package/dist/providers/LLMAPI/utilities/index.d.ts +1 -0
  50. package/dist/providers/LLMAPI/utilities/index.js +7 -0
  51. package/dist/providers/LLMAPI/utilities/index.js.map +1 -0
  52. package/dist/providers/OpenAI/OpenAI.constants.d.ts +165 -0
  53. package/dist/providers/OpenAI/OpenAI.constants.js +11 -0
  54. package/dist/providers/OpenAI/OpenAI.constants.js.map +1 -1
  55. package/dist/providers/OpenAI/OpenAI.typedefs.d.ts +6 -0
  56. package/dist/providers/OpenAI/OpenAI.typedefs.js +9 -1
  57. package/dist/providers/OpenAI/OpenAI.typedefs.js.map +1 -1
  58. package/dist/providers/OpenAI/services/OpenAIAssistance.service.d.ts +9 -7
  59. package/dist/providers/OpenAI/services/OpenAIAssistance.service.js +209 -40
  60. package/dist/providers/OpenAI/services/OpenAIAssistance.service.js.map +1 -1
  61. package/dist/providers/OpenAI/services/OpenAICompletion.service.d.ts +3 -13
  62. package/dist/providers/OpenAI/services/OpenAICompletion.service.js +2 -181
  63. package/dist/providers/OpenAI/services/OpenAICompletion.service.js.map +1 -1
  64. package/dist/providers/OpenAICompatible/OpenAICompatibleCompletion.service.d.ts +21 -0
  65. package/dist/providers/OpenAICompatible/OpenAICompatibleCompletion.service.js +204 -0
  66. package/dist/providers/OpenAICompatible/OpenAICompatibleCompletion.service.js.map +1 -0
  67. package/dist/providers/index.d.ts +1 -0
  68. package/dist/providers/index.js +1 -0
  69. package/dist/providers/index.js.map +1 -1
  70. package/dist/services/LLMAssistanceService.abstract.d.ts +8 -6
  71. package/dist/services/LLMAssistanceService.abstract.js +20 -0
  72. package/dist/services/LLMAssistanceService.abstract.js.map +1 -1
  73. package/dist/services/chatState/CompletionsChatState.d.ts +19 -0
  74. package/dist/services/chatState/CompletionsChatState.js +80 -0
  75. package/dist/services/chatState/CompletionsChatState.js.map +1 -0
  76. package/dist/services/chatState/index.d.ts +1 -0
  77. package/dist/services/chatState/index.js +6 -0
  78. package/dist/services/chatState/index.js.map +1 -0
  79. package/dist/services/fileStorage/FileStorageToolExecutor.d.ts +15 -0
  80. package/dist/services/fileStorage/FileStorageToolExecutor.js +172 -0
  81. package/dist/services/fileStorage/FileStorageToolExecutor.js.map +1 -0
  82. package/dist/services/fileStorage/InMemoryFileStorage.d.ts +20 -0
  83. package/dist/services/fileStorage/InMemoryFileStorage.js +67 -0
  84. package/dist/services/fileStorage/InMemoryFileStorage.js.map +1 -0
  85. package/dist/services/fileStorage/fileStorageTools.d.ts +26 -0
  86. package/dist/services/fileStorage/fileStorageTools.js +67 -0
  87. package/dist/services/fileStorage/fileStorageTools.js.map +1 -0
  88. package/dist/services/fileStorage/index.d.ts +4 -0
  89. package/dist/services/fileStorage/index.js +11 -0
  90. package/dist/services/fileStorage/index.js.map +1 -0
  91. package/dist/utilities/index.d.ts +1 -0
  92. package/dist/utilities/index.js +1 -0
  93. package/dist/utilities/index.js.map +1 -1
  94. package/dist/utilities/schema/SchemaAdapterRegistry.d.ts +2 -0
  95. package/dist/utilities/schema/SchemaAdapterRegistry.js +2 -0
  96. package/dist/utilities/schema/SchemaAdapterRegistry.js.map +1 -1
  97. package/dist/utilities/tools/LLMTool.d.ts +10 -0
  98. package/dist/utilities/tools/LLMTool.js +10 -0
  99. package/dist/utilities/tools/LLMTool.js.map +1 -0
  100. package/dist/utilities/tools/index.d.ts +1 -0
  101. package/dist/utilities/tools/index.js +6 -0
  102. package/dist/utilities/tools/index.js.map +1 -0
  103. package/package.json +1 -1
@@ -1,8 +1,9 @@
1
- import { LLMUploadFileMimeTypes } from './LLMService.typedefs';
2
- import { OpenAIServiceFactory, GoogleGenerativeAIServiceFactory } from './providers';
1
+ import { LLMProviders, LLMUploadFileMimeTypes } from './LLMService.typedefs';
2
+ import { OpenAIServiceFactory, GoogleGenerativeAIServiceFactory, LLMAPIServiceFactory } from './providers';
3
3
  export declare const LLM_SERVICE_FACTORIES: {
4
4
  readonly OpenAI: OpenAIServiceFactory;
5
5
  readonly GoogleGenerativeAI: GoogleGenerativeAIServiceFactory;
6
+ readonly LLMAPI: LLMAPIServiceFactory;
6
7
  };
7
8
  export declare const LLM_SERVICE_MODELS: {
8
9
  readonly OpenAI: {
@@ -24,6 +25,9 @@ export declare const LLM_SERVICE_MODELS: {
24
25
  readonly getPriceForAudioOutput: () => number;
25
26
  readonly currency: "USD";
26
27
  };
28
+ readonly capabilities: {
29
+ readonly vision: true;
30
+ };
27
31
  };
28
32
  readonly "gpt-4.1-mini": {
29
33
  readonly name: import("./providers").OpenAIModelNames.GPT_4_1_MINI;
@@ -42,6 +46,9 @@ export declare const LLM_SERVICE_MODELS: {
42
46
  readonly getPriceForAudioOutput: () => number;
43
47
  readonly currency: "USD";
44
48
  };
49
+ readonly capabilities: {
50
+ readonly vision: true;
51
+ };
45
52
  };
46
53
  readonly "gpt-5": {
47
54
  readonly name: import("./providers").OpenAIModelNames.GPT_5;
@@ -62,6 +69,9 @@ export declare const LLM_SERVICE_MODELS: {
62
69
  readonly getPriceForAudioOutput: () => number;
63
70
  readonly currency: "USD";
64
71
  };
72
+ readonly capabilities: {
73
+ readonly vision: true;
74
+ };
65
75
  };
66
76
  readonly "gpt-5.1": {
67
77
  readonly name: import("./providers").OpenAIModelNames.GPT_5_1;
@@ -82,6 +92,9 @@ export declare const LLM_SERVICE_MODELS: {
82
92
  readonly getPriceForAudioOutput: () => number;
83
93
  readonly currency: "USD";
84
94
  };
95
+ readonly capabilities: {
96
+ readonly vision: true;
97
+ };
85
98
  };
86
99
  readonly "gpt-5.2": {
87
100
  readonly name: import("./providers").OpenAIModelNames.GPT_5_2;
@@ -102,6 +115,9 @@ export declare const LLM_SERVICE_MODELS: {
102
115
  readonly getPriceForAudioOutput: () => number;
103
116
  readonly currency: "USD";
104
117
  };
118
+ readonly capabilities: {
119
+ readonly vision: true;
120
+ };
105
121
  };
106
122
  readonly "gpt-5-mini": {
107
123
  readonly name: import("./providers").OpenAIModelNames.GPT_5_MINI;
@@ -122,6 +138,9 @@ export declare const LLM_SERVICE_MODELS: {
122
138
  readonly getPriceForAudioOutput: () => number;
123
139
  readonly currency: "USD";
124
140
  };
141
+ readonly capabilities: {
142
+ readonly vision: true;
143
+ };
125
144
  };
126
145
  readonly "gpt-5-nano": {
127
146
  readonly name: import("./providers").OpenAIModelNames.GPT_5_NANO;
@@ -142,6 +161,9 @@ export declare const LLM_SERVICE_MODELS: {
142
161
  readonly getPriceForAudioOutput: () => number;
143
162
  readonly currency: "USD";
144
163
  };
164
+ readonly capabilities: {
165
+ readonly vision: true;
166
+ };
145
167
  };
146
168
  readonly "gpt-4o-transcribe": {
147
169
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_TRANSCRIBE;
@@ -161,6 +183,9 @@ export declare const LLM_SERVICE_MODELS: {
161
183
  readonly getPriceForAudioOutput: () => number;
162
184
  readonly currency: "USD";
163
185
  };
186
+ readonly capabilities: {
187
+ readonly vision: false;
188
+ };
164
189
  };
165
190
  readonly "gpt-4o-mini-transcribe": {
166
191
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TRANSCRIBE;
@@ -180,6 +205,9 @@ export declare const LLM_SERVICE_MODELS: {
180
205
  readonly getPriceForAudioOutput: () => number;
181
206
  readonly currency: "USD";
182
207
  };
208
+ readonly capabilities: {
209
+ readonly vision: false;
210
+ };
183
211
  };
184
212
  readonly "gpt-4o-mini-tts": {
185
213
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TTS;
@@ -197,6 +225,9 @@ export declare const LLM_SERVICE_MODELS: {
197
225
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
198
226
  readonly currency: "USD";
199
227
  };
228
+ readonly capabilities: {
229
+ readonly vision: false;
230
+ };
200
231
  };
201
232
  readonly "tts-1": {
202
233
  readonly name: import("./providers").OpenAIModelNames.TTS_1;
@@ -214,6 +245,9 @@ export declare const LLM_SERVICE_MODELS: {
214
245
  readonly getPriceForAudioOutput: () => number;
215
246
  readonly currency: "USD";
216
247
  };
248
+ readonly capabilities: {
249
+ readonly vision: false;
250
+ };
217
251
  };
218
252
  }, import("./providers").OpenAIModelNames.GPT_4_1 | import("./providers").OpenAIModelNames.GPT_4_1_MINI | import("./providers").OpenAIModelNames.GPT_5 | import("./providers").OpenAIModelNames.GPT_5_1 | import("./providers").OpenAIModelNames.GPT_5_2 | import("./providers").OpenAIModelNames.GPT_5_MINI | import("./providers").OpenAIModelNames.GPT_5_NANO>;
219
253
  readonly assistance: Pick<{
@@ -234,6 +268,9 @@ export declare const LLM_SERVICE_MODELS: {
234
268
  readonly getPriceForAudioOutput: () => number;
235
269
  readonly currency: "USD";
236
270
  };
271
+ readonly capabilities: {
272
+ readonly vision: true;
273
+ };
237
274
  };
238
275
  readonly "gpt-4.1-mini": {
239
276
  readonly name: import("./providers").OpenAIModelNames.GPT_4_1_MINI;
@@ -252,6 +289,9 @@ export declare const LLM_SERVICE_MODELS: {
252
289
  readonly getPriceForAudioOutput: () => number;
253
290
  readonly currency: "USD";
254
291
  };
292
+ readonly capabilities: {
293
+ readonly vision: true;
294
+ };
255
295
  };
256
296
  readonly "gpt-5": {
257
297
  readonly name: import("./providers").OpenAIModelNames.GPT_5;
@@ -272,6 +312,9 @@ export declare const LLM_SERVICE_MODELS: {
272
312
  readonly getPriceForAudioOutput: () => number;
273
313
  readonly currency: "USD";
274
314
  };
315
+ readonly capabilities: {
316
+ readonly vision: true;
317
+ };
275
318
  };
276
319
  readonly "gpt-5.1": {
277
320
  readonly name: import("./providers").OpenAIModelNames.GPT_5_1;
@@ -292,6 +335,9 @@ export declare const LLM_SERVICE_MODELS: {
292
335
  readonly getPriceForAudioOutput: () => number;
293
336
  readonly currency: "USD";
294
337
  };
338
+ readonly capabilities: {
339
+ readonly vision: true;
340
+ };
295
341
  };
296
342
  readonly "gpt-5.2": {
297
343
  readonly name: import("./providers").OpenAIModelNames.GPT_5_2;
@@ -312,6 +358,9 @@ export declare const LLM_SERVICE_MODELS: {
312
358
  readonly getPriceForAudioOutput: () => number;
313
359
  readonly currency: "USD";
314
360
  };
361
+ readonly capabilities: {
362
+ readonly vision: true;
363
+ };
315
364
  };
316
365
  readonly "gpt-5-mini": {
317
366
  readonly name: import("./providers").OpenAIModelNames.GPT_5_MINI;
@@ -332,6 +381,9 @@ export declare const LLM_SERVICE_MODELS: {
332
381
  readonly getPriceForAudioOutput: () => number;
333
382
  readonly currency: "USD";
334
383
  };
384
+ readonly capabilities: {
385
+ readonly vision: true;
386
+ };
335
387
  };
336
388
  readonly "gpt-5-nano": {
337
389
  readonly name: import("./providers").OpenAIModelNames.GPT_5_NANO;
@@ -352,6 +404,9 @@ export declare const LLM_SERVICE_MODELS: {
352
404
  readonly getPriceForAudioOutput: () => number;
353
405
  readonly currency: "USD";
354
406
  };
407
+ readonly capabilities: {
408
+ readonly vision: true;
409
+ };
355
410
  };
356
411
  readonly "gpt-4o-transcribe": {
357
412
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_TRANSCRIBE;
@@ -371,6 +426,9 @@ export declare const LLM_SERVICE_MODELS: {
371
426
  readonly getPriceForAudioOutput: () => number;
372
427
  readonly currency: "USD";
373
428
  };
429
+ readonly capabilities: {
430
+ readonly vision: false;
431
+ };
374
432
  };
375
433
  readonly "gpt-4o-mini-transcribe": {
376
434
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TRANSCRIBE;
@@ -390,6 +448,9 @@ export declare const LLM_SERVICE_MODELS: {
390
448
  readonly getPriceForAudioOutput: () => number;
391
449
  readonly currency: "USD";
392
450
  };
451
+ readonly capabilities: {
452
+ readonly vision: false;
453
+ };
393
454
  };
394
455
  readonly "gpt-4o-mini-tts": {
395
456
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TTS;
@@ -407,6 +468,9 @@ export declare const LLM_SERVICE_MODELS: {
407
468
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
408
469
  readonly currency: "USD";
409
470
  };
471
+ readonly capabilities: {
472
+ readonly vision: false;
473
+ };
410
474
  };
411
475
  readonly "tts-1": {
412
476
  readonly name: import("./providers").OpenAIModelNames.TTS_1;
@@ -424,6 +488,9 @@ export declare const LLM_SERVICE_MODELS: {
424
488
  readonly getPriceForAudioOutput: () => number;
425
489
  readonly currency: "USD";
426
490
  };
491
+ readonly capabilities: {
492
+ readonly vision: false;
493
+ };
427
494
  };
428
495
  }, import("./providers").OpenAIModelNames.GPT_4_1 | import("./providers").OpenAIModelNames.GPT_4_1_MINI | import("./providers").OpenAIModelNames.GPT_5 | import("./providers").OpenAIModelNames.GPT_5_1 | import("./providers").OpenAIModelNames.GPT_5_2 | import("./providers").OpenAIModelNames.GPT_5_MINI | import("./providers").OpenAIModelNames.GPT_5_NANO>;
429
496
  readonly text_to_speech: Pick<{
@@ -444,6 +511,9 @@ export declare const LLM_SERVICE_MODELS: {
444
511
  readonly getPriceForAudioOutput: () => number;
445
512
  readonly currency: "USD";
446
513
  };
514
+ readonly capabilities: {
515
+ readonly vision: true;
516
+ };
447
517
  };
448
518
  readonly "gpt-4.1-mini": {
449
519
  readonly name: import("./providers").OpenAIModelNames.GPT_4_1_MINI;
@@ -462,6 +532,9 @@ export declare const LLM_SERVICE_MODELS: {
462
532
  readonly getPriceForAudioOutput: () => number;
463
533
  readonly currency: "USD";
464
534
  };
535
+ readonly capabilities: {
536
+ readonly vision: true;
537
+ };
465
538
  };
466
539
  readonly "gpt-5": {
467
540
  readonly name: import("./providers").OpenAIModelNames.GPT_5;
@@ -482,6 +555,9 @@ export declare const LLM_SERVICE_MODELS: {
482
555
  readonly getPriceForAudioOutput: () => number;
483
556
  readonly currency: "USD";
484
557
  };
558
+ readonly capabilities: {
559
+ readonly vision: true;
560
+ };
485
561
  };
486
562
  readonly "gpt-5.1": {
487
563
  readonly name: import("./providers").OpenAIModelNames.GPT_5_1;
@@ -502,6 +578,9 @@ export declare const LLM_SERVICE_MODELS: {
502
578
  readonly getPriceForAudioOutput: () => number;
503
579
  readonly currency: "USD";
504
580
  };
581
+ readonly capabilities: {
582
+ readonly vision: true;
583
+ };
505
584
  };
506
585
  readonly "gpt-5.2": {
507
586
  readonly name: import("./providers").OpenAIModelNames.GPT_5_2;
@@ -522,6 +601,9 @@ export declare const LLM_SERVICE_MODELS: {
522
601
  readonly getPriceForAudioOutput: () => number;
523
602
  readonly currency: "USD";
524
603
  };
604
+ readonly capabilities: {
605
+ readonly vision: true;
606
+ };
525
607
  };
526
608
  readonly "gpt-5-mini": {
527
609
  readonly name: import("./providers").OpenAIModelNames.GPT_5_MINI;
@@ -542,6 +624,9 @@ export declare const LLM_SERVICE_MODELS: {
542
624
  readonly getPriceForAudioOutput: () => number;
543
625
  readonly currency: "USD";
544
626
  };
627
+ readonly capabilities: {
628
+ readonly vision: true;
629
+ };
545
630
  };
546
631
  readonly "gpt-5-nano": {
547
632
  readonly name: import("./providers").OpenAIModelNames.GPT_5_NANO;
@@ -562,6 +647,9 @@ export declare const LLM_SERVICE_MODELS: {
562
647
  readonly getPriceForAudioOutput: () => number;
563
648
  readonly currency: "USD";
564
649
  };
650
+ readonly capabilities: {
651
+ readonly vision: true;
652
+ };
565
653
  };
566
654
  readonly "gpt-4o-transcribe": {
567
655
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_TRANSCRIBE;
@@ -581,6 +669,9 @@ export declare const LLM_SERVICE_MODELS: {
581
669
  readonly getPriceForAudioOutput: () => number;
582
670
  readonly currency: "USD";
583
671
  };
672
+ readonly capabilities: {
673
+ readonly vision: false;
674
+ };
584
675
  };
585
676
  readonly "gpt-4o-mini-transcribe": {
586
677
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TRANSCRIBE;
@@ -600,6 +691,9 @@ export declare const LLM_SERVICE_MODELS: {
600
691
  readonly getPriceForAudioOutput: () => number;
601
692
  readonly currency: "USD";
602
693
  };
694
+ readonly capabilities: {
695
+ readonly vision: false;
696
+ };
603
697
  };
604
698
  readonly "gpt-4o-mini-tts": {
605
699
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TTS;
@@ -617,6 +711,9 @@ export declare const LLM_SERVICE_MODELS: {
617
711
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
618
712
  readonly currency: "USD";
619
713
  };
714
+ readonly capabilities: {
715
+ readonly vision: false;
716
+ };
620
717
  };
621
718
  readonly "tts-1": {
622
719
  readonly name: import("./providers").OpenAIModelNames.TTS_1;
@@ -634,6 +731,9 @@ export declare const LLM_SERVICE_MODELS: {
634
731
  readonly getPriceForAudioOutput: () => number;
635
732
  readonly currency: "USD";
636
733
  };
734
+ readonly capabilities: {
735
+ readonly vision: false;
736
+ };
637
737
  };
638
738
  }, import("./providers").OpenAIModelNames.TTS_1 | import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TTS>;
639
739
  readonly speech_to_text: Pick<{
@@ -654,6 +754,9 @@ export declare const LLM_SERVICE_MODELS: {
654
754
  readonly getPriceForAudioOutput: () => number;
655
755
  readonly currency: "USD";
656
756
  };
757
+ readonly capabilities: {
758
+ readonly vision: true;
759
+ };
657
760
  };
658
761
  readonly "gpt-4.1-mini": {
659
762
  readonly name: import("./providers").OpenAIModelNames.GPT_4_1_MINI;
@@ -672,6 +775,9 @@ export declare const LLM_SERVICE_MODELS: {
672
775
  readonly getPriceForAudioOutput: () => number;
673
776
  readonly currency: "USD";
674
777
  };
778
+ readonly capabilities: {
779
+ readonly vision: true;
780
+ };
675
781
  };
676
782
  readonly "gpt-5": {
677
783
  readonly name: import("./providers").OpenAIModelNames.GPT_5;
@@ -692,6 +798,9 @@ export declare const LLM_SERVICE_MODELS: {
692
798
  readonly getPriceForAudioOutput: () => number;
693
799
  readonly currency: "USD";
694
800
  };
801
+ readonly capabilities: {
802
+ readonly vision: true;
803
+ };
695
804
  };
696
805
  readonly "gpt-5.1": {
697
806
  readonly name: import("./providers").OpenAIModelNames.GPT_5_1;
@@ -712,6 +821,9 @@ export declare const LLM_SERVICE_MODELS: {
712
821
  readonly getPriceForAudioOutput: () => number;
713
822
  readonly currency: "USD";
714
823
  };
824
+ readonly capabilities: {
825
+ readonly vision: true;
826
+ };
715
827
  };
716
828
  readonly "gpt-5.2": {
717
829
  readonly name: import("./providers").OpenAIModelNames.GPT_5_2;
@@ -732,6 +844,9 @@ export declare const LLM_SERVICE_MODELS: {
732
844
  readonly getPriceForAudioOutput: () => number;
733
845
  readonly currency: "USD";
734
846
  };
847
+ readonly capabilities: {
848
+ readonly vision: true;
849
+ };
735
850
  };
736
851
  readonly "gpt-5-mini": {
737
852
  readonly name: import("./providers").OpenAIModelNames.GPT_5_MINI;
@@ -752,6 +867,9 @@ export declare const LLM_SERVICE_MODELS: {
752
867
  readonly getPriceForAudioOutput: () => number;
753
868
  readonly currency: "USD";
754
869
  };
870
+ readonly capabilities: {
871
+ readonly vision: true;
872
+ };
755
873
  };
756
874
  readonly "gpt-5-nano": {
757
875
  readonly name: import("./providers").OpenAIModelNames.GPT_5_NANO;
@@ -772,6 +890,9 @@ export declare const LLM_SERVICE_MODELS: {
772
890
  readonly getPriceForAudioOutput: () => number;
773
891
  readonly currency: "USD";
774
892
  };
893
+ readonly capabilities: {
894
+ readonly vision: true;
895
+ };
775
896
  };
776
897
  readonly "gpt-4o-transcribe": {
777
898
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_TRANSCRIBE;
@@ -791,6 +912,9 @@ export declare const LLM_SERVICE_MODELS: {
791
912
  readonly getPriceForAudioOutput: () => number;
792
913
  readonly currency: "USD";
793
914
  };
915
+ readonly capabilities: {
916
+ readonly vision: false;
917
+ };
794
918
  };
795
919
  readonly "gpt-4o-mini-transcribe": {
796
920
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TRANSCRIBE;
@@ -810,6 +934,9 @@ export declare const LLM_SERVICE_MODELS: {
810
934
  readonly getPriceForAudioOutput: () => number;
811
935
  readonly currency: "USD";
812
936
  };
937
+ readonly capabilities: {
938
+ readonly vision: false;
939
+ };
813
940
  };
814
941
  readonly "gpt-4o-mini-tts": {
815
942
  readonly name: import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TTS;
@@ -827,6 +954,9 @@ export declare const LLM_SERVICE_MODELS: {
827
954
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
828
955
  readonly currency: "USD";
829
956
  };
957
+ readonly capabilities: {
958
+ readonly vision: false;
959
+ };
830
960
  };
831
961
  readonly "tts-1": {
832
962
  readonly name: import("./providers").OpenAIModelNames.TTS_1;
@@ -844,6 +974,9 @@ export declare const LLM_SERVICE_MODELS: {
844
974
  readonly getPriceForAudioOutput: () => number;
845
975
  readonly currency: "USD";
846
976
  };
977
+ readonly capabilities: {
978
+ readonly vision: false;
979
+ };
847
980
  };
848
981
  }, import("./providers").OpenAIModelNames.GPT_4_OMNI_TRANSCRIBE | import("./providers").OpenAIModelNames.GPT_4_OMNI_MINI_TRANSCRIBE>;
849
982
  };
@@ -867,6 +1000,9 @@ export declare const LLM_SERVICE_MODELS: {
867
1000
  readonly getPriceForAudioOutput: () => number;
868
1001
  readonly currency: "USD";
869
1002
  };
1003
+ readonly capabilities: {
1004
+ readonly vision: true;
1005
+ };
870
1006
  };
871
1007
  readonly "gemini-2.5-flash-lite": {
872
1008
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_LITE;
@@ -886,6 +1022,9 @@ export declare const LLM_SERVICE_MODELS: {
886
1022
  readonly getPriceForAudioOutput: () => number;
887
1023
  readonly currency: "USD";
888
1024
  };
1025
+ readonly capabilities: {
1026
+ readonly vision: true;
1027
+ };
889
1028
  };
890
1029
  readonly "gemini-2.5-pro": {
891
1030
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO;
@@ -905,6 +1044,9 @@ export declare const LLM_SERVICE_MODELS: {
905
1044
  readonly getPriceForAudioOutput: () => number;
906
1045
  readonly currency: "USD";
907
1046
  };
1047
+ readonly capabilities: {
1048
+ readonly vision: true;
1049
+ };
908
1050
  };
909
1051
  readonly "gemini-2.5-flash-preview-tts": {
910
1052
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_PREVIEW_TTS;
@@ -922,6 +1064,9 @@ export declare const LLM_SERVICE_MODELS: {
922
1064
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
923
1065
  readonly currency: "USD";
924
1066
  };
1067
+ readonly capabilities: {
1068
+ readonly vision: false;
1069
+ };
925
1070
  };
926
1071
  readonly "gemini-2.5-pro-preview-tts": {
927
1072
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO_PREVIEW_TTS;
@@ -939,6 +1084,9 @@ export declare const LLM_SERVICE_MODELS: {
939
1084
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
940
1085
  readonly currency: "USD";
941
1086
  };
1087
+ readonly capabilities: {
1088
+ readonly vision: false;
1089
+ };
942
1090
  };
943
1091
  readonly "gemini-3-pro-preview": {
944
1092
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_3_PRO_PREVIEW;
@@ -961,6 +1109,9 @@ export declare const LLM_SERVICE_MODELS: {
961
1109
  readonly getPriceForAudioOutput: () => number;
962
1110
  readonly currency: "USD";
963
1111
  };
1112
+ readonly capabilities: {
1113
+ readonly vision: true;
1114
+ };
964
1115
  };
965
1116
  }, import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH | import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_LITE | import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO | import("./providers").GoogleGenerativeAIModelNames.GEMINI_3_PRO_PREVIEW>;
966
1117
  readonly assistance: Pick<{
@@ -982,6 +1133,9 @@ export declare const LLM_SERVICE_MODELS: {
982
1133
  readonly getPriceForAudioOutput: () => number;
983
1134
  readonly currency: "USD";
984
1135
  };
1136
+ readonly capabilities: {
1137
+ readonly vision: true;
1138
+ };
985
1139
  };
986
1140
  readonly "gemini-2.5-flash-lite": {
987
1141
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_LITE;
@@ -1001,6 +1155,9 @@ export declare const LLM_SERVICE_MODELS: {
1001
1155
  readonly getPriceForAudioOutput: () => number;
1002
1156
  readonly currency: "USD";
1003
1157
  };
1158
+ readonly capabilities: {
1159
+ readonly vision: true;
1160
+ };
1004
1161
  };
1005
1162
  readonly "gemini-2.5-pro": {
1006
1163
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO;
@@ -1020,6 +1177,9 @@ export declare const LLM_SERVICE_MODELS: {
1020
1177
  readonly getPriceForAudioOutput: () => number;
1021
1178
  readonly currency: "USD";
1022
1179
  };
1180
+ readonly capabilities: {
1181
+ readonly vision: true;
1182
+ };
1023
1183
  };
1024
1184
  readonly "gemini-2.5-flash-preview-tts": {
1025
1185
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_PREVIEW_TTS;
@@ -1037,6 +1197,9 @@ export declare const LLM_SERVICE_MODELS: {
1037
1197
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
1038
1198
  readonly currency: "USD";
1039
1199
  };
1200
+ readonly capabilities: {
1201
+ readonly vision: false;
1202
+ };
1040
1203
  };
1041
1204
  readonly "gemini-2.5-pro-preview-tts": {
1042
1205
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO_PREVIEW_TTS;
@@ -1054,6 +1217,9 @@ export declare const LLM_SERVICE_MODELS: {
1054
1217
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
1055
1218
  readonly currency: "USD";
1056
1219
  };
1220
+ readonly capabilities: {
1221
+ readonly vision: false;
1222
+ };
1057
1223
  };
1058
1224
  readonly "gemini-3-pro-preview": {
1059
1225
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_3_PRO_PREVIEW;
@@ -1076,6 +1242,9 @@ export declare const LLM_SERVICE_MODELS: {
1076
1242
  readonly getPriceForAudioOutput: () => number;
1077
1243
  readonly currency: "USD";
1078
1244
  };
1245
+ readonly capabilities: {
1246
+ readonly vision: true;
1247
+ };
1079
1248
  };
1080
1249
  }, import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH | import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_LITE | import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO | import("./providers").GoogleGenerativeAIModelNames.GEMINI_3_PRO_PREVIEW>;
1081
1250
  readonly speech_to_text: Pick<{
@@ -1097,6 +1266,9 @@ export declare const LLM_SERVICE_MODELS: {
1097
1266
  readonly getPriceForAudioOutput: () => number;
1098
1267
  readonly currency: "USD";
1099
1268
  };
1269
+ readonly capabilities: {
1270
+ readonly vision: true;
1271
+ };
1100
1272
  };
1101
1273
  readonly "gemini-2.5-flash-lite": {
1102
1274
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_LITE;
@@ -1116,6 +1288,9 @@ export declare const LLM_SERVICE_MODELS: {
1116
1288
  readonly getPriceForAudioOutput: () => number;
1117
1289
  readonly currency: "USD";
1118
1290
  };
1291
+ readonly capabilities: {
1292
+ readonly vision: true;
1293
+ };
1119
1294
  };
1120
1295
  readonly "gemini-2.5-pro": {
1121
1296
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO;
@@ -1135,6 +1310,9 @@ export declare const LLM_SERVICE_MODELS: {
1135
1310
  readonly getPriceForAudioOutput: () => number;
1136
1311
  readonly currency: "USD";
1137
1312
  };
1313
+ readonly capabilities: {
1314
+ readonly vision: true;
1315
+ };
1138
1316
  };
1139
1317
  readonly "gemini-2.5-flash-preview-tts": {
1140
1318
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_PREVIEW_TTS;
@@ -1152,6 +1330,9 @@ export declare const LLM_SERVICE_MODELS: {
1152
1330
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
1153
1331
  readonly currency: "USD";
1154
1332
  };
1333
+ readonly capabilities: {
1334
+ readonly vision: false;
1335
+ };
1155
1336
  };
1156
1337
  readonly "gemini-2.5-pro-preview-tts": {
1157
1338
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO_PREVIEW_TTS;
@@ -1169,6 +1350,9 @@ export declare const LLM_SERVICE_MODELS: {
1169
1350
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
1170
1351
  readonly currency: "USD";
1171
1352
  };
1353
+ readonly capabilities: {
1354
+ readonly vision: false;
1355
+ };
1172
1356
  };
1173
1357
  readonly "gemini-3-pro-preview": {
1174
1358
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_3_PRO_PREVIEW;
@@ -1191,6 +1375,9 @@ export declare const LLM_SERVICE_MODELS: {
1191
1375
  readonly getPriceForAudioOutput: () => number;
1192
1376
  readonly currency: "USD";
1193
1377
  };
1378
+ readonly capabilities: {
1379
+ readonly vision: true;
1380
+ };
1194
1381
  };
1195
1382
  }, import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH | import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_LITE | import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO | import("./providers").GoogleGenerativeAIModelNames.GEMINI_3_PRO_PREVIEW>;
1196
1383
  readonly text_to_speech: Pick<{
@@ -1212,6 +1399,9 @@ export declare const LLM_SERVICE_MODELS: {
1212
1399
  readonly getPriceForAudioOutput: () => number;
1213
1400
  readonly currency: "USD";
1214
1401
  };
1402
+ readonly capabilities: {
1403
+ readonly vision: true;
1404
+ };
1215
1405
  };
1216
1406
  readonly "gemini-2.5-flash-lite": {
1217
1407
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_LITE;
@@ -1231,6 +1421,9 @@ export declare const LLM_SERVICE_MODELS: {
1231
1421
  readonly getPriceForAudioOutput: () => number;
1232
1422
  readonly currency: "USD";
1233
1423
  };
1424
+ readonly capabilities: {
1425
+ readonly vision: true;
1426
+ };
1234
1427
  };
1235
1428
  readonly "gemini-2.5-pro": {
1236
1429
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO;
@@ -1250,6 +1443,9 @@ export declare const LLM_SERVICE_MODELS: {
1250
1443
  readonly getPriceForAudioOutput: () => number;
1251
1444
  readonly currency: "USD";
1252
1445
  };
1446
+ readonly capabilities: {
1447
+ readonly vision: true;
1448
+ };
1253
1449
  };
1254
1450
  readonly "gemini-2.5-flash-preview-tts": {
1255
1451
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_PREVIEW_TTS;
@@ -1267,6 +1463,9 @@ export declare const LLM_SERVICE_MODELS: {
1267
1463
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
1268
1464
  readonly currency: "USD";
1269
1465
  };
1466
+ readonly capabilities: {
1467
+ readonly vision: false;
1468
+ };
1270
1469
  };
1271
1470
  readonly "gemini-2.5-pro-preview-tts": {
1272
1471
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO_PREVIEW_TTS;
@@ -1284,6 +1483,9 @@ export declare const LLM_SERVICE_MODELS: {
1284
1483
  readonly getPriceForAudioOutput: (audio_tokens: number) => number;
1285
1484
  readonly currency: "USD";
1286
1485
  };
1486
+ readonly capabilities: {
1487
+ readonly vision: false;
1488
+ };
1287
1489
  };
1288
1490
  readonly "gemini-3-pro-preview": {
1289
1491
  readonly name: import("./providers").GoogleGenerativeAIModelNames.GEMINI_3_PRO_PREVIEW;
@@ -1306,9 +1508,596 @@ export declare const LLM_SERVICE_MODELS: {
1306
1508
  readonly getPriceForAudioOutput: () => number;
1307
1509
  readonly currency: "USD";
1308
1510
  };
1511
+ readonly capabilities: {
1512
+ readonly vision: true;
1513
+ };
1309
1514
  };
1310
1515
  }, import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_FLASH_PREVIEW_TTS | import("./providers").GoogleGenerativeAIModelNames.GEMINI_2_5_PRO_PREVIEW_TTS>;
1311
1516
  };
1517
+ readonly LLMAPI: {
1518
+ readonly completion: {
1519
+ readonly "gpt-4.1": {
1520
+ readonly name: import("./providers").LLMAPIModelNames.GPT_4_1;
1521
+ readonly limits: {
1522
+ readonly maxInputTokens: 1047576;
1523
+ readonly maxOutputTokens: 32768;
1524
+ };
1525
+ readonly config: {
1526
+ readonly temperature: 0.2;
1527
+ };
1528
+ readonly pricing: {
1529
+ readonly getPriceForTextInput: (tokens: number) => number;
1530
+ readonly getPriceForTextOutput: (tokens: number) => number;
1531
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1532
+ readonly getPriceForAudioInput: () => number;
1533
+ readonly getPriceForAudioOutput: () => number;
1534
+ readonly currency: "USD";
1535
+ };
1536
+ readonly capabilities: {
1537
+ readonly vision: true;
1538
+ };
1539
+ };
1540
+ readonly "gpt-4.1-mini": {
1541
+ readonly name: import("./providers").LLMAPIModelNames.GPT_4_1_MINI;
1542
+ readonly limits: {
1543
+ readonly maxInputTokens: 1047576;
1544
+ readonly maxOutputTokens: 32768;
1545
+ };
1546
+ readonly config: {
1547
+ readonly temperature: 0.2;
1548
+ };
1549
+ readonly pricing: {
1550
+ readonly getPriceForTextInput: (tokens: number) => number;
1551
+ readonly getPriceForTextOutput: (tokens: number) => number;
1552
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1553
+ readonly getPriceForAudioInput: () => number;
1554
+ readonly getPriceForAudioOutput: () => number;
1555
+ readonly currency: "USD";
1556
+ };
1557
+ readonly capabilities: {
1558
+ readonly vision: true;
1559
+ };
1560
+ };
1561
+ readonly "gpt-5": {
1562
+ readonly name: import("./providers").LLMAPIModelNames.GPT_5;
1563
+ readonly limits: {
1564
+ readonly maxInputTokens: 400000;
1565
+ readonly maxOutputTokens: 128000;
1566
+ };
1567
+ readonly config: {
1568
+ readonly temperature: 0.2;
1569
+ };
1570
+ readonly pricing: {
1571
+ readonly getPriceForTextInput: (tokens: number) => number;
1572
+ readonly getPriceForTextOutput: (tokens: number) => number;
1573
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1574
+ readonly getPriceForAudioInput: () => number;
1575
+ readonly getPriceForAudioOutput: () => number;
1576
+ readonly currency: "USD";
1577
+ };
1578
+ readonly capabilities: {
1579
+ readonly vision: true;
1580
+ };
1581
+ };
1582
+ readonly "gpt-5.1": {
1583
+ readonly name: import("./providers").LLMAPIModelNames.GPT_5_1;
1584
+ readonly limits: {
1585
+ readonly maxInputTokens: 400000;
1586
+ readonly maxOutputTokens: 128000;
1587
+ };
1588
+ readonly config: {
1589
+ readonly temperature: 0.2;
1590
+ };
1591
+ readonly pricing: {
1592
+ readonly getPriceForTextInput: (tokens: number) => number;
1593
+ readonly getPriceForTextOutput: (tokens: number) => number;
1594
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1595
+ readonly getPriceForAudioInput: () => number;
1596
+ readonly getPriceForAudioOutput: () => number;
1597
+ readonly currency: "USD";
1598
+ };
1599
+ readonly capabilities: {
1600
+ readonly vision: true;
1601
+ };
1602
+ };
1603
+ readonly "gpt-5-mini": {
1604
+ readonly name: import("./providers").LLMAPIModelNames.GPT_5_MINI;
1605
+ readonly limits: {
1606
+ readonly maxInputTokens: 400000;
1607
+ readonly maxOutputTokens: 128000;
1608
+ };
1609
+ readonly config: {
1610
+ readonly temperature: 0.2;
1611
+ };
1612
+ readonly pricing: {
1613
+ readonly getPriceForTextInput: (tokens: number) => number;
1614
+ readonly getPriceForTextOutput: (tokens: number) => number;
1615
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1616
+ readonly getPriceForAudioInput: () => number;
1617
+ readonly getPriceForAudioOutput: () => number;
1618
+ readonly currency: "USD";
1619
+ };
1620
+ readonly capabilities: {
1621
+ readonly vision: true;
1622
+ };
1623
+ };
1624
+ readonly "gpt-5-nano": {
1625
+ readonly name: import("./providers").LLMAPIModelNames.GPT_5_NANO;
1626
+ readonly limits: {
1627
+ readonly maxInputTokens: 400000;
1628
+ readonly maxOutputTokens: 128000;
1629
+ };
1630
+ readonly config: {
1631
+ readonly temperature: 0.2;
1632
+ };
1633
+ readonly pricing: {
1634
+ readonly getPriceForTextInput: (tokens: number) => number;
1635
+ readonly getPriceForTextOutput: (tokens: number) => number;
1636
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1637
+ readonly getPriceForAudioInput: () => number;
1638
+ readonly getPriceForAudioOutput: () => number;
1639
+ readonly currency: "USD";
1640
+ };
1641
+ readonly capabilities: {
1642
+ readonly vision: true;
1643
+ };
1644
+ };
1645
+ readonly "gemini-2.5-flash": {
1646
+ readonly name: import("./providers").LLMAPIModelNames.GEMINI_2_5_FLASH;
1647
+ readonly limits: {
1648
+ readonly maxInputTokens: 1048576;
1649
+ readonly maxOutputTokens: 65536;
1650
+ };
1651
+ readonly config: {
1652
+ readonly temperature: 0.2;
1653
+ };
1654
+ readonly pricing: {
1655
+ readonly getPriceForTextInput: (tokens: number) => number;
1656
+ readonly getPriceForTextOutput: (tokens: number) => number;
1657
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1658
+ readonly getPriceForAudioInput: () => number;
1659
+ readonly getPriceForAudioOutput: () => number;
1660
+ readonly currency: "USD";
1661
+ };
1662
+ readonly capabilities: {
1663
+ readonly vision: true;
1664
+ };
1665
+ };
1666
+ readonly "gemini-2.5-pro": {
1667
+ readonly name: import("./providers").LLMAPIModelNames.GEMINI_2_5_PRO;
1668
+ readonly limits: {
1669
+ readonly maxInputTokens: 1048576;
1670
+ readonly maxOutputTokens: 65536;
1671
+ };
1672
+ readonly config: {
1673
+ readonly temperature: 0.2;
1674
+ };
1675
+ readonly pricing: {
1676
+ readonly getPriceForTextInput: (tokens: number) => number;
1677
+ readonly getPriceForTextOutput: (tokens: number) => number;
1678
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1679
+ readonly getPriceForAudioInput: () => number;
1680
+ readonly getPriceForAudioOutput: () => number;
1681
+ readonly currency: "USD";
1682
+ };
1683
+ readonly capabilities: {
1684
+ readonly vision: true;
1685
+ };
1686
+ };
1687
+ readonly "minimax-m2.5": {
1688
+ readonly name: import("./providers").LLMAPIModelNames.MINIMAX_M2_5;
1689
+ readonly limits: {
1690
+ readonly maxInputTokens: 196000;
1691
+ readonly maxOutputTokens: 16000;
1692
+ };
1693
+ readonly config: {
1694
+ readonly temperature: 0.2;
1695
+ };
1696
+ readonly pricing: {
1697
+ readonly getPriceForTextInput: (tokens: number) => number;
1698
+ readonly getPriceForTextOutput: (tokens: number) => number;
1699
+ readonly getPriceForAudioInput: () => number;
1700
+ readonly getPriceForAudioOutput: () => number;
1701
+ readonly currency: "USD";
1702
+ };
1703
+ readonly capabilities: {
1704
+ readonly vision: false;
1705
+ };
1706
+ };
1707
+ readonly "qwen-plus": {
1708
+ readonly name: import("./providers").LLMAPIModelNames.QWEN_PLUS;
1709
+ readonly limits: {
1710
+ readonly maxInputTokens: 128000;
1711
+ readonly maxOutputTokens: 16000;
1712
+ };
1713
+ readonly config: {
1714
+ readonly temperature: 0.2;
1715
+ };
1716
+ readonly pricing: {
1717
+ readonly getPriceForTextInput: (tokens: number) => number;
1718
+ readonly getPriceForTextOutput: (tokens: number) => number;
1719
+ readonly getPriceForAudioInput: () => number;
1720
+ readonly getPriceForAudioOutput: () => number;
1721
+ readonly currency: "USD";
1722
+ };
1723
+ readonly capabilities: {
1724
+ readonly vision: false;
1725
+ };
1726
+ };
1727
+ readonly "qwen-vl-plus": {
1728
+ readonly name: import("./providers").LLMAPIModelNames.QWEN_VL_PLUS;
1729
+ readonly limits: {
1730
+ readonly maxInputTokens: 128000;
1731
+ readonly maxOutputTokens: 16000;
1732
+ };
1733
+ readonly config: {
1734
+ readonly temperature: 0.2;
1735
+ };
1736
+ readonly pricing: {
1737
+ readonly getPriceForTextInput: (tokens: number) => number;
1738
+ readonly getPriceForTextOutput: (tokens: number) => number;
1739
+ readonly getPriceForAudioInput: () => number;
1740
+ readonly getPriceForAudioOutput: () => number;
1741
+ readonly currency: "USD";
1742
+ };
1743
+ readonly capabilities: {
1744
+ readonly vision: true;
1745
+ };
1746
+ };
1747
+ readonly "kimi-k2.5": {
1748
+ readonly name: import("./providers").LLMAPIModelNames.KIMI_K2_5;
1749
+ readonly limits: {
1750
+ readonly maxInputTokens: 128000;
1751
+ readonly maxOutputTokens: 16000;
1752
+ };
1753
+ readonly config: {
1754
+ readonly temperature: 0.2;
1755
+ };
1756
+ readonly pricing: {
1757
+ readonly getPriceForTextInput: (tokens: number) => number;
1758
+ readonly getPriceForTextOutput: (tokens: number) => number;
1759
+ readonly getPriceForAudioInput: () => number;
1760
+ readonly getPriceForAudioOutput: () => number;
1761
+ readonly currency: "USD";
1762
+ };
1763
+ readonly capabilities: {
1764
+ readonly vision: false;
1765
+ };
1766
+ };
1767
+ readonly "qwen-flash": {
1768
+ readonly name: import("./providers").LLMAPIModelNames.QWEN_FLASH;
1769
+ readonly limits: {
1770
+ readonly maxInputTokens: 128000;
1771
+ readonly maxOutputTokens: 16000;
1772
+ };
1773
+ readonly config: {
1774
+ readonly temperature: 0.2;
1775
+ };
1776
+ readonly pricing: {
1777
+ readonly getPriceForTextInput: (tokens: number) => number;
1778
+ readonly getPriceForTextOutput: (tokens: number) => number;
1779
+ readonly getPriceForAudioInput: () => number;
1780
+ readonly getPriceForAudioOutput: () => number;
1781
+ readonly currency: "USD";
1782
+ };
1783
+ readonly capabilities: {
1784
+ readonly vision: false;
1785
+ };
1786
+ };
1787
+ readonly "deepseek-v3.2": {
1788
+ readonly name: import("./providers").LLMAPIModelNames.DEEPSEEK_V3_2;
1789
+ readonly limits: {
1790
+ readonly maxInputTokens: 128000;
1791
+ readonly maxOutputTokens: 16000;
1792
+ };
1793
+ readonly config: {
1794
+ readonly temperature: 0.2;
1795
+ };
1796
+ readonly pricing: {
1797
+ readonly getPriceForTextInput: (tokens: number) => number;
1798
+ readonly getPriceForTextOutput: (tokens: number) => number;
1799
+ readonly getPriceForAudioInput: () => number;
1800
+ readonly getPriceForAudioOutput: () => number;
1801
+ readonly currency: "USD";
1802
+ };
1803
+ readonly capabilities: {
1804
+ readonly vision: false;
1805
+ };
1806
+ };
1807
+ };
1808
+ readonly assistance: {
1809
+ readonly "gpt-4.1": {
1810
+ readonly name: import("./providers").LLMAPIModelNames.GPT_4_1;
1811
+ readonly limits: {
1812
+ readonly maxInputTokens: 1047576;
1813
+ readonly maxOutputTokens: 32768;
1814
+ };
1815
+ readonly config: {
1816
+ readonly temperature: 0.2;
1817
+ };
1818
+ readonly pricing: {
1819
+ readonly getPriceForTextInput: (tokens: number) => number;
1820
+ readonly getPriceForTextOutput: (tokens: number) => number;
1821
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1822
+ readonly getPriceForAudioInput: () => number;
1823
+ readonly getPriceForAudioOutput: () => number;
1824
+ readonly currency: "USD";
1825
+ };
1826
+ readonly capabilities: {
1827
+ readonly vision: true;
1828
+ };
1829
+ };
1830
+ readonly "gpt-4.1-mini": {
1831
+ readonly name: import("./providers").LLMAPIModelNames.GPT_4_1_MINI;
1832
+ readonly limits: {
1833
+ readonly maxInputTokens: 1047576;
1834
+ readonly maxOutputTokens: 32768;
1835
+ };
1836
+ readonly config: {
1837
+ readonly temperature: 0.2;
1838
+ };
1839
+ readonly pricing: {
1840
+ readonly getPriceForTextInput: (tokens: number) => number;
1841
+ readonly getPriceForTextOutput: (tokens: number) => number;
1842
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1843
+ readonly getPriceForAudioInput: () => number;
1844
+ readonly getPriceForAudioOutput: () => number;
1845
+ readonly currency: "USD";
1846
+ };
1847
+ readonly capabilities: {
1848
+ readonly vision: true;
1849
+ };
1850
+ };
1851
+ readonly "gpt-5": {
1852
+ readonly name: import("./providers").LLMAPIModelNames.GPT_5;
1853
+ readonly limits: {
1854
+ readonly maxInputTokens: 400000;
1855
+ readonly maxOutputTokens: 128000;
1856
+ };
1857
+ readonly config: {
1858
+ readonly temperature: 0.2;
1859
+ };
1860
+ readonly pricing: {
1861
+ readonly getPriceForTextInput: (tokens: number) => number;
1862
+ readonly getPriceForTextOutput: (tokens: number) => number;
1863
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1864
+ readonly getPriceForAudioInput: () => number;
1865
+ readonly getPriceForAudioOutput: () => number;
1866
+ readonly currency: "USD";
1867
+ };
1868
+ readonly capabilities: {
1869
+ readonly vision: true;
1870
+ };
1871
+ };
1872
+ readonly "gpt-5.1": {
1873
+ readonly name: import("./providers").LLMAPIModelNames.GPT_5_1;
1874
+ readonly limits: {
1875
+ readonly maxInputTokens: 400000;
1876
+ readonly maxOutputTokens: 128000;
1877
+ };
1878
+ readonly config: {
1879
+ readonly temperature: 0.2;
1880
+ };
1881
+ readonly pricing: {
1882
+ readonly getPriceForTextInput: (tokens: number) => number;
1883
+ readonly getPriceForTextOutput: (tokens: number) => number;
1884
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1885
+ readonly getPriceForAudioInput: () => number;
1886
+ readonly getPriceForAudioOutput: () => number;
1887
+ readonly currency: "USD";
1888
+ };
1889
+ readonly capabilities: {
1890
+ readonly vision: true;
1891
+ };
1892
+ };
1893
+ readonly "gpt-5-mini": {
1894
+ readonly name: import("./providers").LLMAPIModelNames.GPT_5_MINI;
1895
+ readonly limits: {
1896
+ readonly maxInputTokens: 400000;
1897
+ readonly maxOutputTokens: 128000;
1898
+ };
1899
+ readonly config: {
1900
+ readonly temperature: 0.2;
1901
+ };
1902
+ readonly pricing: {
1903
+ readonly getPriceForTextInput: (tokens: number) => number;
1904
+ readonly getPriceForTextOutput: (tokens: number) => number;
1905
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1906
+ readonly getPriceForAudioInput: () => number;
1907
+ readonly getPriceForAudioOutput: () => number;
1908
+ readonly currency: "USD";
1909
+ };
1910
+ readonly capabilities: {
1911
+ readonly vision: true;
1912
+ };
1913
+ };
1914
+ readonly "gpt-5-nano": {
1915
+ readonly name: import("./providers").LLMAPIModelNames.GPT_5_NANO;
1916
+ readonly limits: {
1917
+ readonly maxInputTokens: 400000;
1918
+ readonly maxOutputTokens: 128000;
1919
+ };
1920
+ readonly config: {
1921
+ readonly temperature: 0.2;
1922
+ };
1923
+ readonly pricing: {
1924
+ readonly getPriceForTextInput: (tokens: number) => number;
1925
+ readonly getPriceForTextOutput: (tokens: number) => number;
1926
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1927
+ readonly getPriceForAudioInput: () => number;
1928
+ readonly getPriceForAudioOutput: () => number;
1929
+ readonly currency: "USD";
1930
+ };
1931
+ readonly capabilities: {
1932
+ readonly vision: true;
1933
+ };
1934
+ };
1935
+ readonly "gemini-2.5-flash": {
1936
+ readonly name: import("./providers").LLMAPIModelNames.GEMINI_2_5_FLASH;
1937
+ readonly limits: {
1938
+ readonly maxInputTokens: 1048576;
1939
+ readonly maxOutputTokens: 65536;
1940
+ };
1941
+ readonly config: {
1942
+ readonly temperature: 0.2;
1943
+ };
1944
+ readonly pricing: {
1945
+ readonly getPriceForTextInput: (tokens: number) => number;
1946
+ readonly getPriceForTextOutput: (tokens: number) => number;
1947
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1948
+ readonly getPriceForAudioInput: () => number;
1949
+ readonly getPriceForAudioOutput: () => number;
1950
+ readonly currency: "USD";
1951
+ };
1952
+ readonly capabilities: {
1953
+ readonly vision: true;
1954
+ };
1955
+ };
1956
+ readonly "gemini-2.5-pro": {
1957
+ readonly name: import("./providers").LLMAPIModelNames.GEMINI_2_5_PRO;
1958
+ readonly limits: {
1959
+ readonly maxInputTokens: 1048576;
1960
+ readonly maxOutputTokens: 65536;
1961
+ };
1962
+ readonly config: {
1963
+ readonly temperature: 0.2;
1964
+ };
1965
+ readonly pricing: {
1966
+ readonly getPriceForTextInput: (tokens: number) => number;
1967
+ readonly getPriceForTextOutput: (tokens: number) => number;
1968
+ readonly getPriceForCachedTextInput: (tokens: number) => number;
1969
+ readonly getPriceForAudioInput: () => number;
1970
+ readonly getPriceForAudioOutput: () => number;
1971
+ readonly currency: "USD";
1972
+ };
1973
+ readonly capabilities: {
1974
+ readonly vision: true;
1975
+ };
1976
+ };
1977
+ readonly "minimax-m2.5": {
1978
+ readonly name: import("./providers").LLMAPIModelNames.MINIMAX_M2_5;
1979
+ readonly limits: {
1980
+ readonly maxInputTokens: 196000;
1981
+ readonly maxOutputTokens: 16000;
1982
+ };
1983
+ readonly config: {
1984
+ readonly temperature: 0.2;
1985
+ };
1986
+ readonly pricing: {
1987
+ readonly getPriceForTextInput: (tokens: number) => number;
1988
+ readonly getPriceForTextOutput: (tokens: number) => number;
1989
+ readonly getPriceForAudioInput: () => number;
1990
+ readonly getPriceForAudioOutput: () => number;
1991
+ readonly currency: "USD";
1992
+ };
1993
+ readonly capabilities: {
1994
+ readonly vision: false;
1995
+ };
1996
+ };
1997
+ readonly "qwen-plus": {
1998
+ readonly name: import("./providers").LLMAPIModelNames.QWEN_PLUS;
1999
+ readonly limits: {
2000
+ readonly maxInputTokens: 128000;
2001
+ readonly maxOutputTokens: 16000;
2002
+ };
2003
+ readonly config: {
2004
+ readonly temperature: 0.2;
2005
+ };
2006
+ readonly pricing: {
2007
+ readonly getPriceForTextInput: (tokens: number) => number;
2008
+ readonly getPriceForTextOutput: (tokens: number) => number;
2009
+ readonly getPriceForAudioInput: () => number;
2010
+ readonly getPriceForAudioOutput: () => number;
2011
+ readonly currency: "USD";
2012
+ };
2013
+ readonly capabilities: {
2014
+ readonly vision: false;
2015
+ };
2016
+ };
2017
+ readonly "qwen-vl-plus": {
2018
+ readonly name: import("./providers").LLMAPIModelNames.QWEN_VL_PLUS;
2019
+ readonly limits: {
2020
+ readonly maxInputTokens: 128000;
2021
+ readonly maxOutputTokens: 16000;
2022
+ };
2023
+ readonly config: {
2024
+ readonly temperature: 0.2;
2025
+ };
2026
+ readonly pricing: {
2027
+ readonly getPriceForTextInput: (tokens: number) => number;
2028
+ readonly getPriceForTextOutput: (tokens: number) => number;
2029
+ readonly getPriceForAudioInput: () => number;
2030
+ readonly getPriceForAudioOutput: () => number;
2031
+ readonly currency: "USD";
2032
+ };
2033
+ readonly capabilities: {
2034
+ readonly vision: true;
2035
+ };
2036
+ };
2037
+ readonly "kimi-k2.5": {
2038
+ readonly name: import("./providers").LLMAPIModelNames.KIMI_K2_5;
2039
+ readonly limits: {
2040
+ readonly maxInputTokens: 128000;
2041
+ readonly maxOutputTokens: 16000;
2042
+ };
2043
+ readonly config: {
2044
+ readonly temperature: 0.2;
2045
+ };
2046
+ readonly pricing: {
2047
+ readonly getPriceForTextInput: (tokens: number) => number;
2048
+ readonly getPriceForTextOutput: (tokens: number) => number;
2049
+ readonly getPriceForAudioInput: () => number;
2050
+ readonly getPriceForAudioOutput: () => number;
2051
+ readonly currency: "USD";
2052
+ };
2053
+ readonly capabilities: {
2054
+ readonly vision: false;
2055
+ };
2056
+ };
2057
+ readonly "qwen-flash": {
2058
+ readonly name: import("./providers").LLMAPIModelNames.QWEN_FLASH;
2059
+ readonly limits: {
2060
+ readonly maxInputTokens: 128000;
2061
+ readonly maxOutputTokens: 16000;
2062
+ };
2063
+ readonly config: {
2064
+ readonly temperature: 0.2;
2065
+ };
2066
+ readonly pricing: {
2067
+ readonly getPriceForTextInput: (tokens: number) => number;
2068
+ readonly getPriceForTextOutput: (tokens: number) => number;
2069
+ readonly getPriceForAudioInput: () => number;
2070
+ readonly getPriceForAudioOutput: () => number;
2071
+ readonly currency: "USD";
2072
+ };
2073
+ readonly capabilities: {
2074
+ readonly vision: false;
2075
+ };
2076
+ };
2077
+ readonly "deepseek-v3.2": {
2078
+ readonly name: import("./providers").LLMAPIModelNames.DEEPSEEK_V3_2;
2079
+ readonly limits: {
2080
+ readonly maxInputTokens: 128000;
2081
+ readonly maxOutputTokens: 16000;
2082
+ };
2083
+ readonly config: {
2084
+ readonly temperature: 0.2;
2085
+ };
2086
+ readonly pricing: {
2087
+ readonly getPriceForTextInput: (tokens: number) => number;
2088
+ readonly getPriceForTextOutput: (tokens: number) => number;
2089
+ readonly getPriceForAudioInput: () => number;
2090
+ readonly getPriceForAudioOutput: () => number;
2091
+ readonly currency: "USD";
2092
+ };
2093
+ readonly capabilities: {
2094
+ readonly vision: false;
2095
+ };
2096
+ };
2097
+ };
2098
+ readonly text_to_speech: Partial<import("./LLMService.typedefs").LLMProviderAvailableModels<LLMProviders.LLMAPI>>;
2099
+ readonly speech_to_text: Partial<import("./LLMService.typedefs").LLMProviderAvailableModels<LLMProviders.LLMAPI>>;
2100
+ };
1312
2101
  };
1313
2102
  export declare const APPROXIMATE_TOKENS_COUNT_IN_IMAGE = 1000;
1314
2103
  /**
@@ -1317,3 +2106,4 @@ export declare const APPROXIMATE_TOKENS_COUNT_IN_IMAGE = 1000;
1317
2106
  */
1318
2107
  export declare const MAX_CACHED_INSTANCES = 10;
1319
2108
  export declare const ALL_IMAGE_MIME_TYPES: readonly [LLMUploadFileMimeTypes.IMAGE_PNG, LLMUploadFileMimeTypes.IMAGE_JPEG, LLMUploadFileMimeTypes.IMAGE_JPG, LLMUploadFileMimeTypes.IMAGE_GIF, LLMUploadFileMimeTypes.IMAGE_WEBP, LLMUploadFileMimeTypes.IMAGE_SVG_XML, LLMUploadFileMimeTypes.IMAGE_BMP];
2109
+ export declare const DEFAULT_MAX_TOOL_ITERATIONS = 10;