@mate-academy/llm-gateway 7.0.4 → 7.1.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/LLMService.constants.d.ts +6312 -150
- package/dist/LLMService.typedefs.d.ts +3 -0
- package/dist/LLMService.typedefs.js.map +1 -1
- package/dist/providers/GoogleGenerativeAI/GoogleGenerativeAI.constants.d.ts +96 -0
- package/dist/providers/GoogleGenerativeAI/GoogleGenerativeAI.constants.js +8 -8
- package/dist/providers/GoogleGenerativeAI/GoogleGenerativeAI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +9067 -202
- package/dist/providers/LLMAPI/LLMAPI.constants.js +2379 -89
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +137 -7
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js +146 -8
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
- package/dist/providers/OpenAI/OpenAI.constants.d.ts +200 -5
- package/dist/providers/OpenAI/OpenAI.constants.js +13 -13
- package/dist/providers/OpenAI/OpenAI.constants.js.map +1 -1
- package/dist/services/chatState/CompletionsChatState.js +1 -1
- package/dist/services/chatState/CompletionsChatState.js.map +1 -1
- package/package.json +1 -1
|
@@ -24,6 +24,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
24
24
|
};
|
|
25
25
|
readonly capabilities: {
|
|
26
26
|
readonly vision: true;
|
|
27
|
+
readonly tools: true;
|
|
28
|
+
readonly reasoning: false;
|
|
29
|
+
readonly webSearch: false;
|
|
27
30
|
};
|
|
28
31
|
};
|
|
29
32
|
readonly "gpt-4.1-mini": {
|
|
@@ -45,6 +48,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
45
48
|
};
|
|
46
49
|
readonly capabilities: {
|
|
47
50
|
readonly vision: true;
|
|
51
|
+
readonly tools: true;
|
|
52
|
+
readonly reasoning: false;
|
|
53
|
+
readonly webSearch: false;
|
|
48
54
|
};
|
|
49
55
|
};
|
|
50
56
|
readonly "gpt-4.1-nano": {
|
|
@@ -66,6 +72,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
66
72
|
};
|
|
67
73
|
readonly capabilities: {
|
|
68
74
|
readonly vision: true;
|
|
75
|
+
readonly tools: true;
|
|
76
|
+
readonly reasoning: false;
|
|
77
|
+
readonly webSearch: false;
|
|
69
78
|
};
|
|
70
79
|
};
|
|
71
80
|
readonly "gpt-5": {
|
|
@@ -89,6 +98,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
89
98
|
};
|
|
90
99
|
readonly capabilities: {
|
|
91
100
|
readonly vision: true;
|
|
101
|
+
readonly tools: true;
|
|
102
|
+
readonly reasoning: true;
|
|
103
|
+
readonly webSearch: true;
|
|
92
104
|
};
|
|
93
105
|
};
|
|
94
106
|
readonly "gpt-5.1": {
|
|
@@ -112,6 +124,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
112
124
|
};
|
|
113
125
|
readonly capabilities: {
|
|
114
126
|
readonly vision: true;
|
|
127
|
+
readonly tools: true;
|
|
128
|
+
readonly reasoning: true;
|
|
129
|
+
readonly webSearch: true;
|
|
115
130
|
};
|
|
116
131
|
};
|
|
117
132
|
readonly "gpt-5.2": {
|
|
@@ -135,6 +150,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
135
150
|
};
|
|
136
151
|
readonly capabilities: {
|
|
137
152
|
readonly vision: true;
|
|
153
|
+
readonly tools: true;
|
|
154
|
+
readonly reasoning: true;
|
|
155
|
+
readonly webSearch: true;
|
|
138
156
|
};
|
|
139
157
|
};
|
|
140
158
|
readonly "gpt-5.4": {
|
|
@@ -158,6 +176,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
158
176
|
};
|
|
159
177
|
readonly capabilities: {
|
|
160
178
|
readonly vision: true;
|
|
179
|
+
readonly tools: true;
|
|
180
|
+
readonly reasoning: true;
|
|
181
|
+
readonly webSearch: true;
|
|
161
182
|
};
|
|
162
183
|
};
|
|
163
184
|
readonly "gpt-5-mini": {
|
|
@@ -181,6 +202,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
181
202
|
};
|
|
182
203
|
readonly capabilities: {
|
|
183
204
|
readonly vision: true;
|
|
205
|
+
readonly tools: true;
|
|
206
|
+
readonly reasoning: true;
|
|
207
|
+
readonly webSearch: true;
|
|
184
208
|
};
|
|
185
209
|
};
|
|
186
210
|
readonly "gpt-5-nano": {
|
|
@@ -203,7 +227,10 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
203
227
|
readonly currency: "USD";
|
|
204
228
|
};
|
|
205
229
|
readonly capabilities: {
|
|
206
|
-
readonly vision:
|
|
230
|
+
readonly vision: false;
|
|
231
|
+
readonly tools: true;
|
|
232
|
+
readonly reasoning: true;
|
|
233
|
+
readonly webSearch: true;
|
|
207
234
|
};
|
|
208
235
|
};
|
|
209
236
|
readonly "gpt-4o-transcribe": {
|
|
@@ -226,6 +253,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
226
253
|
};
|
|
227
254
|
readonly capabilities: {
|
|
228
255
|
readonly vision: false;
|
|
256
|
+
readonly tools: false;
|
|
257
|
+
readonly reasoning: false;
|
|
258
|
+
readonly webSearch: false;
|
|
229
259
|
};
|
|
230
260
|
};
|
|
231
261
|
readonly "gpt-4o-mini-transcribe": {
|
|
@@ -248,6 +278,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
248
278
|
};
|
|
249
279
|
readonly capabilities: {
|
|
250
280
|
readonly vision: false;
|
|
281
|
+
readonly tools: false;
|
|
282
|
+
readonly reasoning: false;
|
|
283
|
+
readonly webSearch: false;
|
|
251
284
|
};
|
|
252
285
|
};
|
|
253
286
|
readonly "gpt-4o-mini-tts": {
|
|
@@ -271,6 +304,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
271
304
|
};
|
|
272
305
|
readonly capabilities: {
|
|
273
306
|
readonly vision: false;
|
|
307
|
+
readonly tools: false;
|
|
308
|
+
readonly reasoning: false;
|
|
309
|
+
readonly webSearch: false;
|
|
274
310
|
};
|
|
275
311
|
};
|
|
276
312
|
readonly "tts-1": {
|
|
@@ -294,6 +330,9 @@ export declare const OPEN_AI_AVAILABLE_MODELS: {
|
|
|
294
330
|
};
|
|
295
331
|
readonly capabilities: {
|
|
296
332
|
readonly vision: false;
|
|
333
|
+
readonly tools: false;
|
|
334
|
+
readonly reasoning: false;
|
|
335
|
+
readonly webSearch: false;
|
|
297
336
|
};
|
|
298
337
|
};
|
|
299
338
|
};
|
|
@@ -318,6 +357,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
318
357
|
};
|
|
319
358
|
readonly capabilities: {
|
|
320
359
|
readonly vision: true;
|
|
360
|
+
readonly tools: true;
|
|
361
|
+
readonly reasoning: false;
|
|
362
|
+
readonly webSearch: false;
|
|
321
363
|
};
|
|
322
364
|
};
|
|
323
365
|
readonly "gpt-4.1-mini": {
|
|
@@ -339,6 +381,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
339
381
|
};
|
|
340
382
|
readonly capabilities: {
|
|
341
383
|
readonly vision: true;
|
|
384
|
+
readonly tools: true;
|
|
385
|
+
readonly reasoning: false;
|
|
386
|
+
readonly webSearch: false;
|
|
342
387
|
};
|
|
343
388
|
};
|
|
344
389
|
readonly "gpt-4.1-nano": {
|
|
@@ -360,6 +405,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
360
405
|
};
|
|
361
406
|
readonly capabilities: {
|
|
362
407
|
readonly vision: true;
|
|
408
|
+
readonly tools: true;
|
|
409
|
+
readonly reasoning: false;
|
|
410
|
+
readonly webSearch: false;
|
|
363
411
|
};
|
|
364
412
|
};
|
|
365
413
|
readonly "gpt-5": {
|
|
@@ -383,6 +431,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
383
431
|
};
|
|
384
432
|
readonly capabilities: {
|
|
385
433
|
readonly vision: true;
|
|
434
|
+
readonly tools: true;
|
|
435
|
+
readonly reasoning: true;
|
|
436
|
+
readonly webSearch: true;
|
|
386
437
|
};
|
|
387
438
|
};
|
|
388
439
|
readonly "gpt-5.1": {
|
|
@@ -406,6 +457,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
406
457
|
};
|
|
407
458
|
readonly capabilities: {
|
|
408
459
|
readonly vision: true;
|
|
460
|
+
readonly tools: true;
|
|
461
|
+
readonly reasoning: true;
|
|
462
|
+
readonly webSearch: true;
|
|
409
463
|
};
|
|
410
464
|
};
|
|
411
465
|
readonly "gpt-5.2": {
|
|
@@ -429,6 +483,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
429
483
|
};
|
|
430
484
|
readonly capabilities: {
|
|
431
485
|
readonly vision: true;
|
|
486
|
+
readonly tools: true;
|
|
487
|
+
readonly reasoning: true;
|
|
488
|
+
readonly webSearch: true;
|
|
432
489
|
};
|
|
433
490
|
};
|
|
434
491
|
readonly "gpt-5.4": {
|
|
@@ -452,6 +509,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
452
509
|
};
|
|
453
510
|
readonly capabilities: {
|
|
454
511
|
readonly vision: true;
|
|
512
|
+
readonly tools: true;
|
|
513
|
+
readonly reasoning: true;
|
|
514
|
+
readonly webSearch: true;
|
|
455
515
|
};
|
|
456
516
|
};
|
|
457
517
|
readonly "gpt-5-mini": {
|
|
@@ -475,6 +535,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
475
535
|
};
|
|
476
536
|
readonly capabilities: {
|
|
477
537
|
readonly vision: true;
|
|
538
|
+
readonly tools: true;
|
|
539
|
+
readonly reasoning: true;
|
|
540
|
+
readonly webSearch: true;
|
|
478
541
|
};
|
|
479
542
|
};
|
|
480
543
|
readonly "gpt-5-nano": {
|
|
@@ -497,7 +560,10 @@ export declare const OPEN_AI_MODELS: {
|
|
|
497
560
|
readonly currency: "USD";
|
|
498
561
|
};
|
|
499
562
|
readonly capabilities: {
|
|
500
|
-
readonly vision:
|
|
563
|
+
readonly vision: false;
|
|
564
|
+
readonly tools: true;
|
|
565
|
+
readonly reasoning: true;
|
|
566
|
+
readonly webSearch: true;
|
|
501
567
|
};
|
|
502
568
|
};
|
|
503
569
|
readonly "gpt-4o-transcribe": {
|
|
@@ -520,6 +586,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
520
586
|
};
|
|
521
587
|
readonly capabilities: {
|
|
522
588
|
readonly vision: false;
|
|
589
|
+
readonly tools: false;
|
|
590
|
+
readonly reasoning: false;
|
|
591
|
+
readonly webSearch: false;
|
|
523
592
|
};
|
|
524
593
|
};
|
|
525
594
|
readonly "gpt-4o-mini-transcribe": {
|
|
@@ -542,6 +611,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
542
611
|
};
|
|
543
612
|
readonly capabilities: {
|
|
544
613
|
readonly vision: false;
|
|
614
|
+
readonly tools: false;
|
|
615
|
+
readonly reasoning: false;
|
|
616
|
+
readonly webSearch: false;
|
|
545
617
|
};
|
|
546
618
|
};
|
|
547
619
|
readonly "gpt-4o-mini-tts": {
|
|
@@ -565,6 +637,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
565
637
|
};
|
|
566
638
|
readonly capabilities: {
|
|
567
639
|
readonly vision: false;
|
|
640
|
+
readonly tools: false;
|
|
641
|
+
readonly reasoning: false;
|
|
642
|
+
readonly webSearch: false;
|
|
568
643
|
};
|
|
569
644
|
};
|
|
570
645
|
readonly "tts-1": {
|
|
@@ -588,6 +663,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
588
663
|
};
|
|
589
664
|
readonly capabilities: {
|
|
590
665
|
readonly vision: false;
|
|
666
|
+
readonly tools: false;
|
|
667
|
+
readonly reasoning: false;
|
|
668
|
+
readonly webSearch: false;
|
|
591
669
|
};
|
|
592
670
|
};
|
|
593
671
|
}, OpenAIModelNames.GPT_4_1 | OpenAIModelNames.GPT_4_1_MINI | OpenAIModelNames.GPT_4_1_NANO | OpenAIModelNames.GPT_5 | OpenAIModelNames.GPT_5_1 | OpenAIModelNames.GPT_5_2 | OpenAIModelNames.GPT_5_4 | OpenAIModelNames.GPT_5_MINI | OpenAIModelNames.GPT_5_NANO>;
|
|
@@ -611,6 +689,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
611
689
|
};
|
|
612
690
|
readonly capabilities: {
|
|
613
691
|
readonly vision: true;
|
|
692
|
+
readonly tools: true;
|
|
693
|
+
readonly reasoning: false;
|
|
694
|
+
readonly webSearch: false;
|
|
614
695
|
};
|
|
615
696
|
};
|
|
616
697
|
readonly "gpt-4.1-mini": {
|
|
@@ -632,6 +713,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
632
713
|
};
|
|
633
714
|
readonly capabilities: {
|
|
634
715
|
readonly vision: true;
|
|
716
|
+
readonly tools: true;
|
|
717
|
+
readonly reasoning: false;
|
|
718
|
+
readonly webSearch: false;
|
|
635
719
|
};
|
|
636
720
|
};
|
|
637
721
|
readonly "gpt-4.1-nano": {
|
|
@@ -653,6 +737,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
653
737
|
};
|
|
654
738
|
readonly capabilities: {
|
|
655
739
|
readonly vision: true;
|
|
740
|
+
readonly tools: true;
|
|
741
|
+
readonly reasoning: false;
|
|
742
|
+
readonly webSearch: false;
|
|
656
743
|
};
|
|
657
744
|
};
|
|
658
745
|
readonly "gpt-5": {
|
|
@@ -676,6 +763,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
676
763
|
};
|
|
677
764
|
readonly capabilities: {
|
|
678
765
|
readonly vision: true;
|
|
766
|
+
readonly tools: true;
|
|
767
|
+
readonly reasoning: true;
|
|
768
|
+
readonly webSearch: true;
|
|
679
769
|
};
|
|
680
770
|
};
|
|
681
771
|
readonly "gpt-5.1": {
|
|
@@ -699,6 +789,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
699
789
|
};
|
|
700
790
|
readonly capabilities: {
|
|
701
791
|
readonly vision: true;
|
|
792
|
+
readonly tools: true;
|
|
793
|
+
readonly reasoning: true;
|
|
794
|
+
readonly webSearch: true;
|
|
702
795
|
};
|
|
703
796
|
};
|
|
704
797
|
readonly "gpt-5.2": {
|
|
@@ -722,6 +815,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
722
815
|
};
|
|
723
816
|
readonly capabilities: {
|
|
724
817
|
readonly vision: true;
|
|
818
|
+
readonly tools: true;
|
|
819
|
+
readonly reasoning: true;
|
|
820
|
+
readonly webSearch: true;
|
|
725
821
|
};
|
|
726
822
|
};
|
|
727
823
|
readonly "gpt-5.4": {
|
|
@@ -745,6 +841,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
745
841
|
};
|
|
746
842
|
readonly capabilities: {
|
|
747
843
|
readonly vision: true;
|
|
844
|
+
readonly tools: true;
|
|
845
|
+
readonly reasoning: true;
|
|
846
|
+
readonly webSearch: true;
|
|
748
847
|
};
|
|
749
848
|
};
|
|
750
849
|
readonly "gpt-5-mini": {
|
|
@@ -768,6 +867,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
768
867
|
};
|
|
769
868
|
readonly capabilities: {
|
|
770
869
|
readonly vision: true;
|
|
870
|
+
readonly tools: true;
|
|
871
|
+
readonly reasoning: true;
|
|
872
|
+
readonly webSearch: true;
|
|
771
873
|
};
|
|
772
874
|
};
|
|
773
875
|
readonly "gpt-5-nano": {
|
|
@@ -790,7 +892,10 @@ export declare const OPEN_AI_MODELS: {
|
|
|
790
892
|
readonly currency: "USD";
|
|
791
893
|
};
|
|
792
894
|
readonly capabilities: {
|
|
793
|
-
readonly vision:
|
|
895
|
+
readonly vision: false;
|
|
896
|
+
readonly tools: true;
|
|
897
|
+
readonly reasoning: true;
|
|
898
|
+
readonly webSearch: true;
|
|
794
899
|
};
|
|
795
900
|
};
|
|
796
901
|
readonly "gpt-4o-transcribe": {
|
|
@@ -813,6 +918,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
813
918
|
};
|
|
814
919
|
readonly capabilities: {
|
|
815
920
|
readonly vision: false;
|
|
921
|
+
readonly tools: false;
|
|
922
|
+
readonly reasoning: false;
|
|
923
|
+
readonly webSearch: false;
|
|
816
924
|
};
|
|
817
925
|
};
|
|
818
926
|
readonly "gpt-4o-mini-transcribe": {
|
|
@@ -835,6 +943,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
835
943
|
};
|
|
836
944
|
readonly capabilities: {
|
|
837
945
|
readonly vision: false;
|
|
946
|
+
readonly tools: false;
|
|
947
|
+
readonly reasoning: false;
|
|
948
|
+
readonly webSearch: false;
|
|
838
949
|
};
|
|
839
950
|
};
|
|
840
951
|
readonly "gpt-4o-mini-tts": {
|
|
@@ -858,6 +969,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
858
969
|
};
|
|
859
970
|
readonly capabilities: {
|
|
860
971
|
readonly vision: false;
|
|
972
|
+
readonly tools: false;
|
|
973
|
+
readonly reasoning: false;
|
|
974
|
+
readonly webSearch: false;
|
|
861
975
|
};
|
|
862
976
|
};
|
|
863
977
|
readonly "tts-1": {
|
|
@@ -881,6 +995,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
881
995
|
};
|
|
882
996
|
readonly capabilities: {
|
|
883
997
|
readonly vision: false;
|
|
998
|
+
readonly tools: false;
|
|
999
|
+
readonly reasoning: false;
|
|
1000
|
+
readonly webSearch: false;
|
|
884
1001
|
};
|
|
885
1002
|
};
|
|
886
1003
|
}, OpenAIModelNames.GPT_4_1 | OpenAIModelNames.GPT_4_1_MINI | OpenAIModelNames.GPT_4_1_NANO | OpenAIModelNames.GPT_5 | OpenAIModelNames.GPT_5_1 | OpenAIModelNames.GPT_5_2 | OpenAIModelNames.GPT_5_4 | OpenAIModelNames.GPT_5_MINI | OpenAIModelNames.GPT_5_NANO>;
|
|
@@ -904,6 +1021,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
904
1021
|
};
|
|
905
1022
|
readonly capabilities: {
|
|
906
1023
|
readonly vision: true;
|
|
1024
|
+
readonly tools: true;
|
|
1025
|
+
readonly reasoning: false;
|
|
1026
|
+
readonly webSearch: false;
|
|
907
1027
|
};
|
|
908
1028
|
};
|
|
909
1029
|
readonly "gpt-4.1-mini": {
|
|
@@ -925,6 +1045,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
925
1045
|
};
|
|
926
1046
|
readonly capabilities: {
|
|
927
1047
|
readonly vision: true;
|
|
1048
|
+
readonly tools: true;
|
|
1049
|
+
readonly reasoning: false;
|
|
1050
|
+
readonly webSearch: false;
|
|
928
1051
|
};
|
|
929
1052
|
};
|
|
930
1053
|
readonly "gpt-4.1-nano": {
|
|
@@ -946,6 +1069,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
946
1069
|
};
|
|
947
1070
|
readonly capabilities: {
|
|
948
1071
|
readonly vision: true;
|
|
1072
|
+
readonly tools: true;
|
|
1073
|
+
readonly reasoning: false;
|
|
1074
|
+
readonly webSearch: false;
|
|
949
1075
|
};
|
|
950
1076
|
};
|
|
951
1077
|
readonly "gpt-5": {
|
|
@@ -969,6 +1095,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
969
1095
|
};
|
|
970
1096
|
readonly capabilities: {
|
|
971
1097
|
readonly vision: true;
|
|
1098
|
+
readonly tools: true;
|
|
1099
|
+
readonly reasoning: true;
|
|
1100
|
+
readonly webSearch: true;
|
|
972
1101
|
};
|
|
973
1102
|
};
|
|
974
1103
|
readonly "gpt-5.1": {
|
|
@@ -992,6 +1121,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
992
1121
|
};
|
|
993
1122
|
readonly capabilities: {
|
|
994
1123
|
readonly vision: true;
|
|
1124
|
+
readonly tools: true;
|
|
1125
|
+
readonly reasoning: true;
|
|
1126
|
+
readonly webSearch: true;
|
|
995
1127
|
};
|
|
996
1128
|
};
|
|
997
1129
|
readonly "gpt-5.2": {
|
|
@@ -1015,6 +1147,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1015
1147
|
};
|
|
1016
1148
|
readonly capabilities: {
|
|
1017
1149
|
readonly vision: true;
|
|
1150
|
+
readonly tools: true;
|
|
1151
|
+
readonly reasoning: true;
|
|
1152
|
+
readonly webSearch: true;
|
|
1018
1153
|
};
|
|
1019
1154
|
};
|
|
1020
1155
|
readonly "gpt-5.4": {
|
|
@@ -1038,6 +1173,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1038
1173
|
};
|
|
1039
1174
|
readonly capabilities: {
|
|
1040
1175
|
readonly vision: true;
|
|
1176
|
+
readonly tools: true;
|
|
1177
|
+
readonly reasoning: true;
|
|
1178
|
+
readonly webSearch: true;
|
|
1041
1179
|
};
|
|
1042
1180
|
};
|
|
1043
1181
|
readonly "gpt-5-mini": {
|
|
@@ -1061,6 +1199,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1061
1199
|
};
|
|
1062
1200
|
readonly capabilities: {
|
|
1063
1201
|
readonly vision: true;
|
|
1202
|
+
readonly tools: true;
|
|
1203
|
+
readonly reasoning: true;
|
|
1204
|
+
readonly webSearch: true;
|
|
1064
1205
|
};
|
|
1065
1206
|
};
|
|
1066
1207
|
readonly "gpt-5-nano": {
|
|
@@ -1083,7 +1224,10 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1083
1224
|
readonly currency: "USD";
|
|
1084
1225
|
};
|
|
1085
1226
|
readonly capabilities: {
|
|
1086
|
-
readonly vision:
|
|
1227
|
+
readonly vision: false;
|
|
1228
|
+
readonly tools: true;
|
|
1229
|
+
readonly reasoning: true;
|
|
1230
|
+
readonly webSearch: true;
|
|
1087
1231
|
};
|
|
1088
1232
|
};
|
|
1089
1233
|
readonly "gpt-4o-transcribe": {
|
|
@@ -1106,6 +1250,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1106
1250
|
};
|
|
1107
1251
|
readonly capabilities: {
|
|
1108
1252
|
readonly vision: false;
|
|
1253
|
+
readonly tools: false;
|
|
1254
|
+
readonly reasoning: false;
|
|
1255
|
+
readonly webSearch: false;
|
|
1109
1256
|
};
|
|
1110
1257
|
};
|
|
1111
1258
|
readonly "gpt-4o-mini-transcribe": {
|
|
@@ -1128,6 +1275,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1128
1275
|
};
|
|
1129
1276
|
readonly capabilities: {
|
|
1130
1277
|
readonly vision: false;
|
|
1278
|
+
readonly tools: false;
|
|
1279
|
+
readonly reasoning: false;
|
|
1280
|
+
readonly webSearch: false;
|
|
1131
1281
|
};
|
|
1132
1282
|
};
|
|
1133
1283
|
readonly "gpt-4o-mini-tts": {
|
|
@@ -1151,6 +1301,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1151
1301
|
};
|
|
1152
1302
|
readonly capabilities: {
|
|
1153
1303
|
readonly vision: false;
|
|
1304
|
+
readonly tools: false;
|
|
1305
|
+
readonly reasoning: false;
|
|
1306
|
+
readonly webSearch: false;
|
|
1154
1307
|
};
|
|
1155
1308
|
};
|
|
1156
1309
|
readonly "tts-1": {
|
|
@@ -1174,6 +1327,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1174
1327
|
};
|
|
1175
1328
|
readonly capabilities: {
|
|
1176
1329
|
readonly vision: false;
|
|
1330
|
+
readonly tools: false;
|
|
1331
|
+
readonly reasoning: false;
|
|
1332
|
+
readonly webSearch: false;
|
|
1177
1333
|
};
|
|
1178
1334
|
};
|
|
1179
1335
|
}, OpenAIModelNames.TTS_1 | OpenAIModelNames.GPT_4_OMNI_MINI_TTS>;
|
|
@@ -1197,6 +1353,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1197
1353
|
};
|
|
1198
1354
|
readonly capabilities: {
|
|
1199
1355
|
readonly vision: true;
|
|
1356
|
+
readonly tools: true;
|
|
1357
|
+
readonly reasoning: false;
|
|
1358
|
+
readonly webSearch: false;
|
|
1200
1359
|
};
|
|
1201
1360
|
};
|
|
1202
1361
|
readonly "gpt-4.1-mini": {
|
|
@@ -1218,6 +1377,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1218
1377
|
};
|
|
1219
1378
|
readonly capabilities: {
|
|
1220
1379
|
readonly vision: true;
|
|
1380
|
+
readonly tools: true;
|
|
1381
|
+
readonly reasoning: false;
|
|
1382
|
+
readonly webSearch: false;
|
|
1221
1383
|
};
|
|
1222
1384
|
};
|
|
1223
1385
|
readonly "gpt-4.1-nano": {
|
|
@@ -1239,6 +1401,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1239
1401
|
};
|
|
1240
1402
|
readonly capabilities: {
|
|
1241
1403
|
readonly vision: true;
|
|
1404
|
+
readonly tools: true;
|
|
1405
|
+
readonly reasoning: false;
|
|
1406
|
+
readonly webSearch: false;
|
|
1242
1407
|
};
|
|
1243
1408
|
};
|
|
1244
1409
|
readonly "gpt-5": {
|
|
@@ -1262,6 +1427,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1262
1427
|
};
|
|
1263
1428
|
readonly capabilities: {
|
|
1264
1429
|
readonly vision: true;
|
|
1430
|
+
readonly tools: true;
|
|
1431
|
+
readonly reasoning: true;
|
|
1432
|
+
readonly webSearch: true;
|
|
1265
1433
|
};
|
|
1266
1434
|
};
|
|
1267
1435
|
readonly "gpt-5.1": {
|
|
@@ -1285,6 +1453,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1285
1453
|
};
|
|
1286
1454
|
readonly capabilities: {
|
|
1287
1455
|
readonly vision: true;
|
|
1456
|
+
readonly tools: true;
|
|
1457
|
+
readonly reasoning: true;
|
|
1458
|
+
readonly webSearch: true;
|
|
1288
1459
|
};
|
|
1289
1460
|
};
|
|
1290
1461
|
readonly "gpt-5.2": {
|
|
@@ -1308,6 +1479,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1308
1479
|
};
|
|
1309
1480
|
readonly capabilities: {
|
|
1310
1481
|
readonly vision: true;
|
|
1482
|
+
readonly tools: true;
|
|
1483
|
+
readonly reasoning: true;
|
|
1484
|
+
readonly webSearch: true;
|
|
1311
1485
|
};
|
|
1312
1486
|
};
|
|
1313
1487
|
readonly "gpt-5.4": {
|
|
@@ -1331,6 +1505,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1331
1505
|
};
|
|
1332
1506
|
readonly capabilities: {
|
|
1333
1507
|
readonly vision: true;
|
|
1508
|
+
readonly tools: true;
|
|
1509
|
+
readonly reasoning: true;
|
|
1510
|
+
readonly webSearch: true;
|
|
1334
1511
|
};
|
|
1335
1512
|
};
|
|
1336
1513
|
readonly "gpt-5-mini": {
|
|
@@ -1354,6 +1531,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1354
1531
|
};
|
|
1355
1532
|
readonly capabilities: {
|
|
1356
1533
|
readonly vision: true;
|
|
1534
|
+
readonly tools: true;
|
|
1535
|
+
readonly reasoning: true;
|
|
1536
|
+
readonly webSearch: true;
|
|
1357
1537
|
};
|
|
1358
1538
|
};
|
|
1359
1539
|
readonly "gpt-5-nano": {
|
|
@@ -1376,7 +1556,10 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1376
1556
|
readonly currency: "USD";
|
|
1377
1557
|
};
|
|
1378
1558
|
readonly capabilities: {
|
|
1379
|
-
readonly vision:
|
|
1559
|
+
readonly vision: false;
|
|
1560
|
+
readonly tools: true;
|
|
1561
|
+
readonly reasoning: true;
|
|
1562
|
+
readonly webSearch: true;
|
|
1380
1563
|
};
|
|
1381
1564
|
};
|
|
1382
1565
|
readonly "gpt-4o-transcribe": {
|
|
@@ -1399,6 +1582,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1399
1582
|
};
|
|
1400
1583
|
readonly capabilities: {
|
|
1401
1584
|
readonly vision: false;
|
|
1585
|
+
readonly tools: false;
|
|
1586
|
+
readonly reasoning: false;
|
|
1587
|
+
readonly webSearch: false;
|
|
1402
1588
|
};
|
|
1403
1589
|
};
|
|
1404
1590
|
readonly "gpt-4o-mini-transcribe": {
|
|
@@ -1421,6 +1607,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1421
1607
|
};
|
|
1422
1608
|
readonly capabilities: {
|
|
1423
1609
|
readonly vision: false;
|
|
1610
|
+
readonly tools: false;
|
|
1611
|
+
readonly reasoning: false;
|
|
1612
|
+
readonly webSearch: false;
|
|
1424
1613
|
};
|
|
1425
1614
|
};
|
|
1426
1615
|
readonly "gpt-4o-mini-tts": {
|
|
@@ -1444,6 +1633,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1444
1633
|
};
|
|
1445
1634
|
readonly capabilities: {
|
|
1446
1635
|
readonly vision: false;
|
|
1636
|
+
readonly tools: false;
|
|
1637
|
+
readonly reasoning: false;
|
|
1638
|
+
readonly webSearch: false;
|
|
1447
1639
|
};
|
|
1448
1640
|
};
|
|
1449
1641
|
readonly "tts-1": {
|
|
@@ -1467,6 +1659,9 @@ export declare const OPEN_AI_MODELS: {
|
|
|
1467
1659
|
};
|
|
1468
1660
|
readonly capabilities: {
|
|
1469
1661
|
readonly vision: false;
|
|
1662
|
+
readonly tools: false;
|
|
1663
|
+
readonly reasoning: false;
|
|
1664
|
+
readonly webSearch: false;
|
|
1470
1665
|
};
|
|
1471
1666
|
};
|
|
1472
1667
|
}, OpenAIModelNames.GPT_4_OMNI_TRANSCRIBE | OpenAIModelNames.GPT_4_OMNI_MINI_TRANSCRIBE>;
|