@mate-academy/llm-gateway 8.9.0 → 8.10.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 (25) hide show
  1. package/README.md +6 -2
  2. package/dist/LLMService.constants.d.ts +178 -268
  3. package/dist/LLMService.typedefs.d.ts +1 -0
  4. package/dist/LLMService.typedefs.js.map +1 -1
  5. package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +464 -336
  6. package/dist/providers/LLMAPI/LLMAPI.constants.js +121 -152
  7. package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
  8. package/dist/providers/LLMAPI/LLMAPI.typedefs.js +1 -1
  9. package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
  10. package/dist/providers/LLMAPI/LLMAPI.voices.d.ts +14 -0
  11. package/dist/providers/LLMAPI/LLMAPI.voices.js +30 -7
  12. package/dist/providers/LLMAPI/LLMAPI.voices.js.map +1 -1
  13. package/dist/providers/LLMAPI/services/LLMAPISpeechToText.service.d.ts +2 -2
  14. package/dist/providers/LLMAPI/services/LLMAPISpeechToText.service.js +4 -3
  15. package/dist/providers/LLMAPI/services/LLMAPISpeechToText.service.js.map +1 -1
  16. package/dist/providers/OpenAI/services/OpenAISpeechToText.service.d.ts +1 -1
  17. package/dist/providers/OpenAI/services/OpenAISpeechToText.service.js +1 -1
  18. package/dist/providers/OpenAI/services/OpenAISpeechToText.service.js.map +1 -1
  19. package/dist/providers/OpenAICompatible/OpenAICompatibleSpeechToText.service.d.ts +1 -1
  20. package/dist/providers/OpenAICompatible/OpenAICompatibleSpeechToText.service.js +1 -1
  21. package/dist/providers/OpenAICompatible/OpenAICompatibleSpeechToText.service.js.map +1 -1
  22. package/dist/utilities/audio.d.ts +1 -0
  23. package/dist/utilities/audio.js +12 -0
  24. package/dist/utilities/audio.js.map +1 -0
  25. package/package.json +1 -1
@@ -10445,6 +10445,7 @@ export declare const LLM_SERVICE_MODELS: {
10445
10445
  readonly reasoning: false;
10446
10446
  readonly webSearch: false;
10447
10447
  readonly stt: true;
10448
+ readonly streamingSTT: true;
10448
10449
  };
10449
10450
  };
10450
10451
  readonly "universal-streaming-english": {
@@ -10467,6 +10468,7 @@ export declare const LLM_SERVICE_MODELS: {
10467
10468
  readonly reasoning: false;
10468
10469
  readonly webSearch: false;
10469
10470
  readonly stt: true;
10471
+ readonly streamingSTT: true;
10470
10472
  };
10471
10473
  };
10472
10474
  readonly "universal-streaming-multilingual": {
@@ -10489,6 +10491,7 @@ export declare const LLM_SERVICE_MODELS: {
10489
10491
  readonly reasoning: false;
10490
10492
  readonly webSearch: false;
10491
10493
  readonly stt: true;
10494
+ readonly streamingSTT: true;
10492
10495
  };
10493
10496
  };
10494
10497
  readonly "whisper-rt": {
@@ -10511,6 +10514,7 @@ export declare const LLM_SERVICE_MODELS: {
10511
10514
  readonly reasoning: false;
10512
10515
  readonly webSearch: false;
10513
10516
  readonly stt: true;
10517
+ readonly streamingSTT: true;
10514
10518
  };
10515
10519
  };
10516
10520
  readonly "ink-whisper": {
@@ -10555,6 +10559,7 @@ export declare const LLM_SERVICE_MODELS: {
10555
10559
  readonly reasoning: false;
10556
10560
  readonly webSearch: false;
10557
10561
  readonly stt: true;
10562
+ readonly streamingSTT: true;
10558
10563
  };
10559
10564
  };
10560
10565
  readonly "flux-general-en": {
@@ -10577,6 +10582,7 @@ export declare const LLM_SERVICE_MODELS: {
10577
10582
  readonly reasoning: false;
10578
10583
  readonly webSearch: false;
10579
10584
  readonly stt: true;
10585
+ readonly streamingSTT: true;
10580
10586
  };
10581
10587
  };
10582
10588
  readonly "flux-general-multi": {
@@ -10599,6 +10605,7 @@ export declare const LLM_SERVICE_MODELS: {
10599
10605
  readonly reasoning: false;
10600
10606
  readonly webSearch: false;
10601
10607
  readonly stt: true;
10608
+ readonly streamingSTT: true;
10602
10609
  };
10603
10610
  };
10604
10611
  readonly "nova-2-drivethru": {
@@ -11906,15 +11913,13 @@ export declare const LLM_SERVICE_MODELS: {
11906
11913
  readonly "gpt-4o-mini-tts": {
11907
11914
  readonly name: import("./providers").LLMAPIModelNames.GPT_4O_MINI_TTS;
11908
11915
  readonly limits: {
11909
- readonly maxInputTokens: 128000;
11916
+ readonly maxInputTokens: 4096;
11910
11917
  readonly maxOutputTokens: 0;
11911
11918
  };
11912
- readonly config: {
11913
- readonly temperature: 0.2;
11914
- };
11919
+ readonly config: {};
11915
11920
  readonly pricing: {
11916
- readonly getPriceForTextInput: (tokens: number) => number;
11917
- readonly getPriceForTextOutput: (tokens: number) => number;
11921
+ readonly getPriceForTextInput: (characters: number) => number;
11922
+ readonly getPriceForTextOutput: () => number;
11918
11923
  readonly getPriceForAudioInput: () => number;
11919
11924
  readonly getPriceForAudioOutput: () => number;
11920
11925
  readonly currency: "USD";
@@ -11924,8 +11929,6 @@ export declare const LLM_SERVICE_MODELS: {
11924
11929
  readonly tools: false;
11925
11930
  readonly reasoning: false;
11926
11931
  readonly webSearch: false;
11927
- readonly jsonOutput: false;
11928
- readonly structuredOutputs: false;
11929
11932
  readonly tts: true;
11930
11933
  };
11931
11934
  };
@@ -12059,16 +12062,14 @@ export declare const LLM_SERVICE_MODELS: {
12059
12062
  readonly "ink-2": {
12060
12063
  readonly name: import("./providers").LLMAPIModelNames.INK_2;
12061
12064
  readonly limits: {
12062
- readonly maxInputTokens: 128000;
12065
+ readonly maxInputTokens: 0;
12063
12066
  readonly maxOutputTokens: 0;
12064
12067
  };
12065
- readonly config: {
12066
- readonly temperature: 0.2;
12067
- };
12068
+ readonly config: {};
12068
12069
  readonly pricing: {
12069
- readonly getPriceForTextInput: (tokens: number) => number;
12070
- readonly getPriceForTextOutput: (tokens: number) => number;
12071
- readonly getPriceForAudioInput: () => number;
12070
+ readonly getPriceForTextInput: () => number;
12071
+ readonly getPriceForTextOutput: () => number;
12072
+ readonly getPriceForAudioInput: (seconds: number) => number;
12072
12073
  readonly getPriceForAudioOutput: () => number;
12073
12074
  readonly currency: "USD";
12074
12075
  };
@@ -12077,9 +12078,8 @@ export declare const LLM_SERVICE_MODELS: {
12077
12078
  readonly tools: false;
12078
12079
  readonly reasoning: false;
12079
12080
  readonly webSearch: false;
12080
- readonly jsonOutput: false;
12081
- readonly structuredOutputs: false;
12082
12081
  readonly stt: true;
12082
+ readonly streamingSTT: true;
12083
12083
  };
12084
12084
  };
12085
12085
  readonly "jina-embeddings-v4": {
@@ -12966,16 +12966,14 @@ export declare const LLM_SERVICE_MODELS: {
12966
12966
  readonly scribe_v1: {
12967
12967
  readonly name: import("./providers").LLMAPIModelNames.SCRIBE_V1;
12968
12968
  readonly limits: {
12969
- readonly maxInputTokens: 128000;
12969
+ readonly maxInputTokens: 0;
12970
12970
  readonly maxOutputTokens: 0;
12971
12971
  };
12972
- readonly config: {
12973
- readonly temperature: 0.2;
12974
- };
12972
+ readonly config: {};
12975
12973
  readonly pricing: {
12976
- readonly getPriceForTextInput: (tokens: number) => number;
12977
- readonly getPriceForTextOutput: (tokens: number) => number;
12978
- readonly getPriceForAudioInput: () => number;
12974
+ readonly getPriceForTextInput: () => number;
12975
+ readonly getPriceForTextOutput: () => number;
12976
+ readonly getPriceForAudioInput: (seconds: number) => number;
12979
12977
  readonly getPriceForAudioOutput: () => number;
12980
12978
  readonly currency: "USD";
12981
12979
  };
@@ -12984,24 +12982,20 @@ export declare const LLM_SERVICE_MODELS: {
12984
12982
  readonly tools: false;
12985
12983
  readonly reasoning: false;
12986
12984
  readonly webSearch: false;
12987
- readonly jsonOutput: false;
12988
- readonly structuredOutputs: false;
12989
12985
  readonly stt: true;
12990
12986
  };
12991
12987
  };
12992
12988
  readonly scribe_v2: {
12993
12989
  readonly name: import("./providers").LLMAPIModelNames.SCRIBE_V2;
12994
12990
  readonly limits: {
12995
- readonly maxInputTokens: 128000;
12991
+ readonly maxInputTokens: 0;
12996
12992
  readonly maxOutputTokens: 0;
12997
12993
  };
12998
- readonly config: {
12999
- readonly temperature: 0.2;
13000
- };
12994
+ readonly config: {};
13001
12995
  readonly pricing: {
13002
- readonly getPriceForTextInput: (tokens: number) => number;
13003
- readonly getPriceForTextOutput: (tokens: number) => number;
13004
- readonly getPriceForAudioInput: () => number;
12996
+ readonly getPriceForTextInput: () => number;
12997
+ readonly getPriceForTextOutput: () => number;
12998
+ readonly getPriceForAudioInput: (seconds: number) => number;
13005
12999
  readonly getPriceForAudioOutput: () => number;
13006
13000
  readonly currency: "USD";
13007
13001
  };
@@ -13010,23 +13004,19 @@ export declare const LLM_SERVICE_MODELS: {
13010
13004
  readonly tools: false;
13011
13005
  readonly reasoning: false;
13012
13006
  readonly webSearch: false;
13013
- readonly jsonOutput: false;
13014
- readonly structuredOutputs: false;
13015
13007
  readonly stt: true;
13016
13008
  };
13017
13009
  };
13018
13010
  readonly "sonic-3.5": {
13019
13011
  readonly name: import("./providers").LLMAPIModelNames.SONIC_3_5;
13020
13012
  readonly limits: {
13021
- readonly maxInputTokens: 128000;
13013
+ readonly maxInputTokens: 50000;
13022
13014
  readonly maxOutputTokens: 0;
13023
13015
  };
13024
- readonly config: {
13025
- readonly temperature: 0.2;
13026
- };
13016
+ readonly config: {};
13027
13017
  readonly pricing: {
13028
- readonly getPriceForTextInput: (tokens: number) => number;
13029
- readonly getPriceForTextOutput: (tokens: number) => number;
13018
+ readonly getPriceForTextInput: (characters: number) => number;
13019
+ readonly getPriceForTextOutput: () => number;
13030
13020
  readonly getPriceForAudioInput: () => number;
13031
13021
  readonly getPriceForAudioOutput: () => number;
13032
13022
  readonly currency: "USD";
@@ -13036,8 +13026,6 @@ export declare const LLM_SERVICE_MODELS: {
13036
13026
  readonly tools: false;
13037
13027
  readonly reasoning: false;
13038
13028
  readonly webSearch: false;
13039
- readonly jsonOutput: false;
13040
- readonly structuredOutputs: false;
13041
13029
  readonly tts: true;
13042
13030
  };
13043
13031
  };
@@ -25731,6 +25719,7 @@ export declare const LLM_SERVICE_MODELS: {
25731
25719
  readonly reasoning: false;
25732
25720
  readonly webSearch: false;
25733
25721
  readonly stt: true;
25722
+ readonly streamingSTT: true;
25734
25723
  };
25735
25724
  };
25736
25725
  readonly "universal-streaming-english": {
@@ -25753,6 +25742,7 @@ export declare const LLM_SERVICE_MODELS: {
25753
25742
  readonly reasoning: false;
25754
25743
  readonly webSearch: false;
25755
25744
  readonly stt: true;
25745
+ readonly streamingSTT: true;
25756
25746
  };
25757
25747
  };
25758
25748
  readonly "universal-streaming-multilingual": {
@@ -25775,6 +25765,7 @@ export declare const LLM_SERVICE_MODELS: {
25775
25765
  readonly reasoning: false;
25776
25766
  readonly webSearch: false;
25777
25767
  readonly stt: true;
25768
+ readonly streamingSTT: true;
25778
25769
  };
25779
25770
  };
25780
25771
  readonly "whisper-rt": {
@@ -25797,6 +25788,7 @@ export declare const LLM_SERVICE_MODELS: {
25797
25788
  readonly reasoning: false;
25798
25789
  readonly webSearch: false;
25799
25790
  readonly stt: true;
25791
+ readonly streamingSTT: true;
25800
25792
  };
25801
25793
  };
25802
25794
  readonly "ink-whisper": {
@@ -25841,6 +25833,7 @@ export declare const LLM_SERVICE_MODELS: {
25841
25833
  readonly reasoning: false;
25842
25834
  readonly webSearch: false;
25843
25835
  readonly stt: true;
25836
+ readonly streamingSTT: true;
25844
25837
  };
25845
25838
  };
25846
25839
  readonly "flux-general-en": {
@@ -25863,6 +25856,7 @@ export declare const LLM_SERVICE_MODELS: {
25863
25856
  readonly reasoning: false;
25864
25857
  readonly webSearch: false;
25865
25858
  readonly stt: true;
25859
+ readonly streamingSTT: true;
25866
25860
  };
25867
25861
  };
25868
25862
  readonly "flux-general-multi": {
@@ -25885,6 +25879,7 @@ export declare const LLM_SERVICE_MODELS: {
25885
25879
  readonly reasoning: false;
25886
25880
  readonly webSearch: false;
25887
25881
  readonly stt: true;
25882
+ readonly streamingSTT: true;
25888
25883
  };
25889
25884
  };
25890
25885
  readonly "nova-2-drivethru": {
@@ -27192,15 +27187,13 @@ export declare const LLM_SERVICE_MODELS: {
27192
27187
  readonly "gpt-4o-mini-tts": {
27193
27188
  readonly name: import("./providers").LLMAPIModelNames.GPT_4O_MINI_TTS;
27194
27189
  readonly limits: {
27195
- readonly maxInputTokens: 128000;
27190
+ readonly maxInputTokens: 4096;
27196
27191
  readonly maxOutputTokens: 0;
27197
27192
  };
27198
- readonly config: {
27199
- readonly temperature: 0.2;
27200
- };
27193
+ readonly config: {};
27201
27194
  readonly pricing: {
27202
- readonly getPriceForTextInput: (tokens: number) => number;
27203
- readonly getPriceForTextOutput: (tokens: number) => number;
27195
+ readonly getPriceForTextInput: (characters: number) => number;
27196
+ readonly getPriceForTextOutput: () => number;
27204
27197
  readonly getPriceForAudioInput: () => number;
27205
27198
  readonly getPriceForAudioOutput: () => number;
27206
27199
  readonly currency: "USD";
@@ -27210,8 +27203,6 @@ export declare const LLM_SERVICE_MODELS: {
27210
27203
  readonly tools: false;
27211
27204
  readonly reasoning: false;
27212
27205
  readonly webSearch: false;
27213
- readonly jsonOutput: false;
27214
- readonly structuredOutputs: false;
27215
27206
  readonly tts: true;
27216
27207
  };
27217
27208
  };
@@ -27345,16 +27336,14 @@ export declare const LLM_SERVICE_MODELS: {
27345
27336
  readonly "ink-2": {
27346
27337
  readonly name: import("./providers").LLMAPIModelNames.INK_2;
27347
27338
  readonly limits: {
27348
- readonly maxInputTokens: 128000;
27339
+ readonly maxInputTokens: 0;
27349
27340
  readonly maxOutputTokens: 0;
27350
27341
  };
27351
- readonly config: {
27352
- readonly temperature: 0.2;
27353
- };
27342
+ readonly config: {};
27354
27343
  readonly pricing: {
27355
- readonly getPriceForTextInput: (tokens: number) => number;
27356
- readonly getPriceForTextOutput: (tokens: number) => number;
27357
- readonly getPriceForAudioInput: () => number;
27344
+ readonly getPriceForTextInput: () => number;
27345
+ readonly getPriceForTextOutput: () => number;
27346
+ readonly getPriceForAudioInput: (seconds: number) => number;
27358
27347
  readonly getPriceForAudioOutput: () => number;
27359
27348
  readonly currency: "USD";
27360
27349
  };
@@ -27363,9 +27352,8 @@ export declare const LLM_SERVICE_MODELS: {
27363
27352
  readonly tools: false;
27364
27353
  readonly reasoning: false;
27365
27354
  readonly webSearch: false;
27366
- readonly jsonOutput: false;
27367
- readonly structuredOutputs: false;
27368
27355
  readonly stt: true;
27356
+ readonly streamingSTT: true;
27369
27357
  };
27370
27358
  };
27371
27359
  readonly "jina-embeddings-v4": {
@@ -28252,16 +28240,14 @@ export declare const LLM_SERVICE_MODELS: {
28252
28240
  readonly scribe_v1: {
28253
28241
  readonly name: import("./providers").LLMAPIModelNames.SCRIBE_V1;
28254
28242
  readonly limits: {
28255
- readonly maxInputTokens: 128000;
28243
+ readonly maxInputTokens: 0;
28256
28244
  readonly maxOutputTokens: 0;
28257
28245
  };
28258
- readonly config: {
28259
- readonly temperature: 0.2;
28260
- };
28246
+ readonly config: {};
28261
28247
  readonly pricing: {
28262
- readonly getPriceForTextInput: (tokens: number) => number;
28263
- readonly getPriceForTextOutput: (tokens: number) => number;
28264
- readonly getPriceForAudioInput: () => number;
28248
+ readonly getPriceForTextInput: () => number;
28249
+ readonly getPriceForTextOutput: () => number;
28250
+ readonly getPriceForAudioInput: (seconds: number) => number;
28265
28251
  readonly getPriceForAudioOutput: () => number;
28266
28252
  readonly currency: "USD";
28267
28253
  };
@@ -28270,24 +28256,20 @@ export declare const LLM_SERVICE_MODELS: {
28270
28256
  readonly tools: false;
28271
28257
  readonly reasoning: false;
28272
28258
  readonly webSearch: false;
28273
- readonly jsonOutput: false;
28274
- readonly structuredOutputs: false;
28275
28259
  readonly stt: true;
28276
28260
  };
28277
28261
  };
28278
28262
  readonly scribe_v2: {
28279
28263
  readonly name: import("./providers").LLMAPIModelNames.SCRIBE_V2;
28280
28264
  readonly limits: {
28281
- readonly maxInputTokens: 128000;
28265
+ readonly maxInputTokens: 0;
28282
28266
  readonly maxOutputTokens: 0;
28283
28267
  };
28284
- readonly config: {
28285
- readonly temperature: 0.2;
28286
- };
28268
+ readonly config: {};
28287
28269
  readonly pricing: {
28288
- readonly getPriceForTextInput: (tokens: number) => number;
28289
- readonly getPriceForTextOutput: (tokens: number) => number;
28290
- readonly getPriceForAudioInput: () => number;
28270
+ readonly getPriceForTextInput: () => number;
28271
+ readonly getPriceForTextOutput: () => number;
28272
+ readonly getPriceForAudioInput: (seconds: number) => number;
28291
28273
  readonly getPriceForAudioOutput: () => number;
28292
28274
  readonly currency: "USD";
28293
28275
  };
@@ -28296,23 +28278,19 @@ export declare const LLM_SERVICE_MODELS: {
28296
28278
  readonly tools: false;
28297
28279
  readonly reasoning: false;
28298
28280
  readonly webSearch: false;
28299
- readonly jsonOutput: false;
28300
- readonly structuredOutputs: false;
28301
28281
  readonly stt: true;
28302
28282
  };
28303
28283
  };
28304
28284
  readonly "sonic-3.5": {
28305
28285
  readonly name: import("./providers").LLMAPIModelNames.SONIC_3_5;
28306
28286
  readonly limits: {
28307
- readonly maxInputTokens: 128000;
28287
+ readonly maxInputTokens: 50000;
28308
28288
  readonly maxOutputTokens: 0;
28309
28289
  };
28310
- readonly config: {
28311
- readonly temperature: 0.2;
28312
- };
28290
+ readonly config: {};
28313
28291
  readonly pricing: {
28314
- readonly getPriceForTextInput: (tokens: number) => number;
28315
- readonly getPriceForTextOutput: (tokens: number) => number;
28292
+ readonly getPriceForTextInput: (characters: number) => number;
28293
+ readonly getPriceForTextOutput: () => number;
28316
28294
  readonly getPriceForAudioInput: () => number;
28317
28295
  readonly getPriceForAudioOutput: () => number;
28318
28296
  readonly currency: "USD";
@@ -28322,8 +28300,6 @@ export declare const LLM_SERVICE_MODELS: {
28322
28300
  readonly tools: false;
28323
28301
  readonly reasoning: false;
28324
28302
  readonly webSearch: false;
28325
- readonly jsonOutput: false;
28326
- readonly structuredOutputs: false;
28327
28303
  readonly tts: true;
28328
28304
  };
28329
28305
  };
@@ -32764,8 +32740,8 @@ export declare const LLM_SERVICE_MODELS: {
32764
32740
  };
32765
32741
  };
32766
32742
  readonly text_to_speech: {
32767
- readonly "sonic-3-2026-01-12": {
32768
- readonly name: import("./providers").LLMAPIModelNames.SONIC_3_2026_01_12;
32743
+ readonly "sonic-2": {
32744
+ readonly name: import("./providers").LLMAPIModelNames.SONIC_2;
32769
32745
  readonly limits: {
32770
32746
  readonly maxInputTokens: 50000;
32771
32747
  readonly maxOutputTokens: 0;
@@ -32808,8 +32784,8 @@ export declare const LLM_SERVICE_MODELS: {
32808
32784
  readonly tts: true;
32809
32785
  };
32810
32786
  };
32811
- readonly "sonic-turbo": {
32812
- readonly name: import("./providers").LLMAPIModelNames.SONIC_TURBO;
32787
+ readonly "sonic-3-2026-01-12": {
32788
+ readonly name: import("./providers").LLMAPIModelNames.SONIC_3_2026_01_12;
32813
32789
  readonly limits: {
32814
32790
  readonly maxInputTokens: 50000;
32815
32791
  readonly maxOutputTokens: 0;
@@ -32830,8 +32806,8 @@ export declare const LLM_SERVICE_MODELS: {
32830
32806
  readonly tts: true;
32831
32807
  };
32832
32808
  };
32833
- readonly "sonic-2": {
32834
- readonly name: import("./providers").LLMAPIModelNames.SONIC_2;
32809
+ readonly "sonic-3.5": {
32810
+ readonly name: import("./providers").LLMAPIModelNames.SONIC_3_5;
32835
32811
  readonly limits: {
32836
32812
  readonly maxInputTokens: 50000;
32837
32813
  readonly maxOutputTokens: 0;
@@ -32852,10 +32828,10 @@ export declare const LLM_SERVICE_MODELS: {
32852
32828
  readonly tts: true;
32853
32829
  };
32854
32830
  };
32855
- readonly eleven_v3: {
32856
- readonly name: import("./providers").LLMAPIModelNames.ELEVEN_V3;
32831
+ readonly "sonic-turbo": {
32832
+ readonly name: import("./providers").LLMAPIModelNames.SONIC_TURBO;
32857
32833
  readonly limits: {
32858
- readonly maxInputTokens: 40000;
32834
+ readonly maxInputTokens: 50000;
32859
32835
  readonly maxOutputTokens: 0;
32860
32836
  };
32861
32837
  readonly config: {};
@@ -32874,10 +32850,10 @@ export declare const LLM_SERVICE_MODELS: {
32874
32850
  readonly tts: true;
32875
32851
  };
32876
32852
  };
32877
- readonly eleven_multilingual_v2: {
32878
- readonly name: import("./providers").LLMAPIModelNames.ELEVEN_MULTILINGUAL_V2;
32853
+ readonly aura: {
32854
+ readonly name: import("./providers").LLMAPIModelNames.AURA;
32879
32855
  readonly limits: {
32880
- readonly maxInputTokens: 40000;
32856
+ readonly maxInputTokens: 2000;
32881
32857
  readonly maxOutputTokens: 0;
32882
32858
  };
32883
32859
  readonly config: {};
@@ -32896,10 +32872,10 @@ export declare const LLM_SERVICE_MODELS: {
32896
32872
  readonly tts: true;
32897
32873
  };
32898
32874
  };
32899
- readonly eleven_turbo_v2_5: {
32900
- readonly name: import("./providers").LLMAPIModelNames.ELEVEN_TURBO_V2_5;
32875
+ readonly "aura-2": {
32876
+ readonly name: import("./providers").LLMAPIModelNames.AURA_2;
32901
32877
  readonly limits: {
32902
- readonly maxInputTokens: 40000;
32878
+ readonly maxInputTokens: 2000;
32903
32879
  readonly maxOutputTokens: 0;
32904
32880
  };
32905
32881
  readonly config: {};
@@ -32940,10 +32916,10 @@ export declare const LLM_SERVICE_MODELS: {
32940
32916
  readonly tts: true;
32941
32917
  };
32942
32918
  };
32943
- readonly "aura-2": {
32944
- readonly name: import("./providers").LLMAPIModelNames.AURA_2;
32919
+ readonly eleven_multilingual_v2: {
32920
+ readonly name: import("./providers").LLMAPIModelNames.ELEVEN_MULTILINGUAL_V2;
32945
32921
  readonly limits: {
32946
- readonly maxInputTokens: 2000;
32922
+ readonly maxInputTokens: 40000;
32947
32923
  readonly maxOutputTokens: 0;
32948
32924
  };
32949
32925
  readonly config: {};
@@ -32962,10 +32938,10 @@ export declare const LLM_SERVICE_MODELS: {
32962
32938
  readonly tts: true;
32963
32939
  };
32964
32940
  };
32965
- readonly aura: {
32966
- readonly name: import("./providers").LLMAPIModelNames.AURA;
32941
+ readonly eleven_turbo_v2_5: {
32942
+ readonly name: import("./providers").LLMAPIModelNames.ELEVEN_TURBO_V2_5;
32967
32943
  readonly limits: {
32968
- readonly maxInputTokens: 2000;
32944
+ readonly maxInputTokens: 40000;
32969
32945
  readonly maxOutputTokens: 0;
32970
32946
  };
32971
32947
  readonly config: {};
@@ -32984,10 +32960,10 @@ export declare const LLM_SERVICE_MODELS: {
32984
32960
  readonly tts: true;
32985
32961
  };
32986
32962
  };
32987
- readonly "gemini-3.1-flash-tts-preview": {
32988
- readonly name: import("./providers").LLMAPIModelNames.GEMINI_3_1_FLASH_TTS_PREVIEW;
32963
+ readonly eleven_v3: {
32964
+ readonly name: import("./providers").LLMAPIModelNames.ELEVEN_V3;
32989
32965
  readonly limits: {
32990
- readonly maxInputTokens: 32768;
32966
+ readonly maxInputTokens: 40000;
32991
32967
  readonly maxOutputTokens: 0;
32992
32968
  };
32993
32969
  readonly config: {};
@@ -33006,8 +32982,8 @@ export declare const LLM_SERVICE_MODELS: {
33006
32982
  readonly tts: true;
33007
32983
  };
33008
32984
  };
33009
- readonly "gemini-2.5-pro-preview-tts": {
33010
- readonly name: import("./providers").LLMAPIModelNames.GEMINI_2_5_PRO_PREVIEW_TTS;
32985
+ readonly "gemini-2.5-flash-preview-tts": {
32986
+ readonly name: import("./providers").LLMAPIModelNames.GEMINI_2_5_FLASH_PREVIEW_TTS;
33011
32987
  readonly limits: {
33012
32988
  readonly maxInputTokens: 32768;
33013
32989
  readonly maxOutputTokens: 0;
@@ -33028,8 +33004,8 @@ export declare const LLM_SERVICE_MODELS: {
33028
33004
  readonly tts: true;
33029
33005
  };
33030
33006
  };
33031
- readonly "gemini-2.5-flash-preview-tts": {
33032
- readonly name: import("./providers").LLMAPIModelNames.GEMINI_2_5_FLASH_PREVIEW_TTS;
33007
+ readonly "gemini-2.5-pro-preview-tts": {
33008
+ readonly name: import("./providers").LLMAPIModelNames.GEMINI_2_5_PRO_PREVIEW_TTS;
33033
33009
  readonly limits: {
33034
33010
  readonly maxInputTokens: 32768;
33035
33011
  readonly maxOutputTokens: 0;
@@ -33050,19 +33026,17 @@ export declare const LLM_SERVICE_MODELS: {
33050
33026
  readonly tts: true;
33051
33027
  };
33052
33028
  };
33053
- };
33054
- readonly speech_to_text: {
33055
- readonly "nova-3": {
33056
- readonly name: import("./providers").LLMAPIModelNames.NOVA_3;
33029
+ readonly "gemini-3.1-flash-tts-preview": {
33030
+ readonly name: import("./providers").LLMAPIModelNames.GEMINI_3_1_FLASH_TTS_PREVIEW;
33057
33031
  readonly limits: {
33058
- readonly maxInputTokens: 0;
33032
+ readonly maxInputTokens: 32768;
33059
33033
  readonly maxOutputTokens: 0;
33060
33034
  };
33061
33035
  readonly config: {};
33062
33036
  readonly pricing: {
33063
- readonly getPriceForTextInput: () => number;
33037
+ readonly getPriceForTextInput: (characters: number) => number;
33064
33038
  readonly getPriceForTextOutput: () => number;
33065
- readonly getPriceForAudioInput: (seconds: number) => number;
33039
+ readonly getPriceForAudioInput: () => number;
33066
33040
  readonly getPriceForAudioOutput: () => number;
33067
33041
  readonly currency: "USD";
33068
33042
  };
@@ -33071,20 +33045,20 @@ export declare const LLM_SERVICE_MODELS: {
33071
33045
  readonly tools: false;
33072
33046
  readonly reasoning: false;
33073
33047
  readonly webSearch: false;
33074
- readonly stt: true;
33048
+ readonly tts: true;
33075
33049
  };
33076
33050
  };
33077
- readonly "nova-3-medical": {
33078
- readonly name: import("./providers").LLMAPIModelNames.NOVA_3_MEDICAL;
33051
+ readonly "gpt-4o-mini-tts": {
33052
+ readonly name: import("./providers").LLMAPIModelNames.GPT_4O_MINI_TTS;
33079
33053
  readonly limits: {
33080
- readonly maxInputTokens: 0;
33054
+ readonly maxInputTokens: 4096;
33081
33055
  readonly maxOutputTokens: 0;
33082
33056
  };
33083
33057
  readonly config: {};
33084
33058
  readonly pricing: {
33085
- readonly getPriceForTextInput: () => number;
33059
+ readonly getPriceForTextInput: (characters: number) => number;
33086
33060
  readonly getPriceForTextOutput: () => number;
33087
- readonly getPriceForAudioInput: (seconds: number) => number;
33061
+ readonly getPriceForAudioInput: () => number;
33088
33062
  readonly getPriceForAudioOutput: () => number;
33089
33063
  readonly currency: "USD";
33090
33064
  };
@@ -33093,11 +33067,13 @@ export declare const LLM_SERVICE_MODELS: {
33093
33067
  readonly tools: false;
33094
33068
  readonly reasoning: false;
33095
33069
  readonly webSearch: false;
33096
- readonly stt: true;
33070
+ readonly tts: true;
33097
33071
  };
33098
33072
  };
33099
- readonly "nova-2": {
33100
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2;
33073
+ };
33074
+ readonly speech_to_text: {
33075
+ readonly "universal-2": {
33076
+ readonly name: import("./providers").LLMAPIModelNames.UNIVERSAL_2;
33101
33077
  readonly limits: {
33102
33078
  readonly maxInputTokens: 0;
33103
33079
  readonly maxOutputTokens: 0;
@@ -33118,8 +33094,8 @@ export declare const LLM_SERVICE_MODELS: {
33118
33094
  readonly stt: true;
33119
33095
  };
33120
33096
  };
33121
- readonly "nova-2-medical": {
33122
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_MEDICAL;
33097
+ readonly "universal-3-pro": {
33098
+ readonly name: import("./providers").LLMAPIModelNames.UNIVERSAL_3_PRO;
33123
33099
  readonly limits: {
33124
33100
  readonly maxInputTokens: 0;
33125
33101
  readonly maxOutputTokens: 0;
@@ -33140,8 +33116,8 @@ export declare const LLM_SERVICE_MODELS: {
33140
33116
  readonly stt: true;
33141
33117
  };
33142
33118
  };
33143
- readonly "nova-2-meeting": {
33144
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_MEETING;
33119
+ readonly whisper: {
33120
+ readonly name: import("./providers").LLMAPIModelNames.AZURE_WHISPER;
33145
33121
  readonly limits: {
33146
33122
  readonly maxInputTokens: 0;
33147
33123
  readonly maxOutputTokens: 0;
@@ -33162,8 +33138,8 @@ export declare const LLM_SERVICE_MODELS: {
33162
33138
  readonly stt: true;
33163
33139
  };
33164
33140
  };
33165
- readonly "nova-2-phonecall": {
33166
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_PHONECALL;
33141
+ readonly "ink-whisper": {
33142
+ readonly name: import("./providers").LLMAPIModelNames.INK_WHISPER;
33167
33143
  readonly limits: {
33168
33144
  readonly maxInputTokens: 0;
33169
33145
  readonly maxOutputTokens: 0;
@@ -33184,8 +33160,8 @@ export declare const LLM_SERVICE_MODELS: {
33184
33160
  readonly stt: true;
33185
33161
  };
33186
33162
  };
33187
- readonly "nova-2-conversationalai": {
33188
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_CONVERSATIONALAI;
33163
+ readonly base: {
33164
+ readonly name: import("./providers").LLMAPIModelNames.BASE;
33189
33165
  readonly limits: {
33190
33166
  readonly maxInputTokens: 0;
33191
33167
  readonly maxOutputTokens: 0;
@@ -33206,8 +33182,8 @@ export declare const LLM_SERVICE_MODELS: {
33206
33182
  readonly stt: true;
33207
33183
  };
33208
33184
  };
33209
- readonly "whisper-1": {
33210
- readonly name: import("./providers").LLMAPIModelNames.WHISPER_1;
33185
+ readonly "base-conversationalai": {
33186
+ readonly name: import("./providers").LLMAPIModelNames.BASE_CONVERSATIONALAI;
33211
33187
  readonly limits: {
33212
33188
  readonly maxInputTokens: 0;
33213
33189
  readonly maxOutputTokens: 0;
@@ -33228,8 +33204,8 @@ export declare const LLM_SERVICE_MODELS: {
33228
33204
  readonly stt: true;
33229
33205
  };
33230
33206
  };
33231
- readonly "gpt-4o-transcribe": {
33232
- readonly name: import("./providers").LLMAPIModelNames.GPT_4O_TRANSCRIBE;
33207
+ readonly "base-finance": {
33208
+ readonly name: import("./providers").LLMAPIModelNames.BASE_FINANCE;
33233
33209
  readonly limits: {
33234
33210
  readonly maxInputTokens: 0;
33235
33211
  readonly maxOutputTokens: 0;
@@ -33250,8 +33226,8 @@ export declare const LLM_SERVICE_MODELS: {
33250
33226
  readonly stt: true;
33251
33227
  };
33252
33228
  };
33253
- readonly "gpt-4o-mini-transcribe": {
33254
- readonly name: import("./providers").LLMAPIModelNames.GPT_4O_MINI_TRANSCRIBE;
33229
+ readonly "base-meeting": {
33230
+ readonly name: import("./providers").LLMAPIModelNames.BASE_MEETING;
33255
33231
  readonly limits: {
33256
33232
  readonly maxInputTokens: 0;
33257
33233
  readonly maxOutputTokens: 0;
@@ -33272,8 +33248,8 @@ export declare const LLM_SERVICE_MODELS: {
33272
33248
  readonly stt: true;
33273
33249
  };
33274
33250
  };
33275
- readonly whisper: {
33276
- readonly name: import("./providers").LLMAPIModelNames.AZURE_WHISPER;
33251
+ readonly "base-phonecall": {
33252
+ readonly name: import("./providers").LLMAPIModelNames.BASE_PHONECALL;
33277
33253
  readonly limits: {
33278
33254
  readonly maxInputTokens: 0;
33279
33255
  readonly maxOutputTokens: 0;
@@ -33294,8 +33270,8 @@ export declare const LLM_SERVICE_MODELS: {
33294
33270
  readonly stt: true;
33295
33271
  };
33296
33272
  };
33297
- readonly "universal-2": {
33298
- readonly name: import("./providers").LLMAPIModelNames.UNIVERSAL_2;
33273
+ readonly "base-video": {
33274
+ readonly name: import("./providers").LLMAPIModelNames.BASE_VIDEO;
33299
33275
  readonly limits: {
33300
33276
  readonly maxInputTokens: 0;
33301
33277
  readonly maxOutputTokens: 0;
@@ -33316,8 +33292,8 @@ export declare const LLM_SERVICE_MODELS: {
33316
33292
  readonly stt: true;
33317
33293
  };
33318
33294
  };
33319
- readonly "universal-3-pro": {
33320
- readonly name: import("./providers").LLMAPIModelNames.UNIVERSAL_3_PRO;
33295
+ readonly "base-voicemail": {
33296
+ readonly name: import("./providers").LLMAPIModelNames.BASE_VOICEMAIL;
33321
33297
  readonly limits: {
33322
33298
  readonly maxInputTokens: 0;
33323
33299
  readonly maxOutputTokens: 0;
@@ -33338,8 +33314,8 @@ export declare const LLM_SERVICE_MODELS: {
33338
33314
  readonly stt: true;
33339
33315
  };
33340
33316
  };
33341
- readonly "u3-rt-pro": {
33342
- readonly name: import("./providers").LLMAPIModelNames.U3_RT_PRO;
33317
+ readonly enhanced: {
33318
+ readonly name: import("./providers").LLMAPIModelNames.ENHANCED;
33343
33319
  readonly limits: {
33344
33320
  readonly maxInputTokens: 0;
33345
33321
  readonly maxOutputTokens: 0;
@@ -33360,8 +33336,8 @@ export declare const LLM_SERVICE_MODELS: {
33360
33336
  readonly stt: true;
33361
33337
  };
33362
33338
  };
33363
- readonly "universal-streaming-english": {
33364
- readonly name: import("./providers").LLMAPIModelNames.UNIVERSAL_STREAMING_ENGLISH;
33339
+ readonly "enhanced-finance": {
33340
+ readonly name: import("./providers").LLMAPIModelNames.ENHANCED_FINANCE;
33365
33341
  readonly limits: {
33366
33342
  readonly maxInputTokens: 0;
33367
33343
  readonly maxOutputTokens: 0;
@@ -33382,8 +33358,8 @@ export declare const LLM_SERVICE_MODELS: {
33382
33358
  readonly stt: true;
33383
33359
  };
33384
33360
  };
33385
- readonly "universal-streaming-multilingual": {
33386
- readonly name: import("./providers").LLMAPIModelNames.UNIVERSAL_STREAMING_MULTILINGUAL;
33361
+ readonly "enhanced-meeting": {
33362
+ readonly name: import("./providers").LLMAPIModelNames.ENHANCED_MEETING;
33387
33363
  readonly limits: {
33388
33364
  readonly maxInputTokens: 0;
33389
33365
  readonly maxOutputTokens: 0;
@@ -33404,8 +33380,8 @@ export declare const LLM_SERVICE_MODELS: {
33404
33380
  readonly stt: true;
33405
33381
  };
33406
33382
  };
33407
- readonly "whisper-rt": {
33408
- readonly name: import("./providers").LLMAPIModelNames.WHISPER_RT;
33383
+ readonly "enhanced-phonecall": {
33384
+ readonly name: import("./providers").LLMAPIModelNames.ENHANCED_PHONECALL;
33409
33385
  readonly limits: {
33410
33386
  readonly maxInputTokens: 0;
33411
33387
  readonly maxOutputTokens: 0;
@@ -33426,8 +33402,8 @@ export declare const LLM_SERVICE_MODELS: {
33426
33402
  readonly stt: true;
33427
33403
  };
33428
33404
  };
33429
- readonly "ink-whisper": {
33430
- readonly name: import("./providers").LLMAPIModelNames.INK_WHISPER;
33405
+ readonly "nova-2": {
33406
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2;
33431
33407
  readonly limits: {
33432
33408
  readonly maxInputTokens: 0;
33433
33409
  readonly maxOutputTokens: 0;
@@ -33448,8 +33424,8 @@ export declare const LLM_SERVICE_MODELS: {
33448
33424
  readonly stt: true;
33449
33425
  };
33450
33426
  };
33451
- readonly flux: {
33452
- readonly name: import("./providers").LLMAPIModelNames.FLUX;
33427
+ readonly "nova-2-atc": {
33428
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_ATC;
33453
33429
  readonly limits: {
33454
33430
  readonly maxInputTokens: 0;
33455
33431
  readonly maxOutputTokens: 0;
@@ -33470,8 +33446,8 @@ export declare const LLM_SERVICE_MODELS: {
33470
33446
  readonly stt: true;
33471
33447
  };
33472
33448
  };
33473
- readonly "flux-general-en": {
33474
- readonly name: import("./providers").LLMAPIModelNames.FLUX_GENERAL_EN;
33449
+ readonly "nova-2-automotive": {
33450
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_AUTOMOTIVE;
33475
33451
  readonly limits: {
33476
33452
  readonly maxInputTokens: 0;
33477
33453
  readonly maxOutputTokens: 0;
@@ -33492,8 +33468,8 @@ export declare const LLM_SERVICE_MODELS: {
33492
33468
  readonly stt: true;
33493
33469
  };
33494
33470
  };
33495
- readonly "flux-general-multi": {
33496
- readonly name: import("./providers").LLMAPIModelNames.FLUX_GENERAL_MULTI;
33471
+ readonly "nova-2-conversationalai": {
33472
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_CONVERSATIONALAI;
33497
33473
  readonly limits: {
33498
33474
  readonly maxInputTokens: 0;
33499
33475
  readonly maxOutputTokens: 0;
@@ -33536,8 +33512,8 @@ export declare const LLM_SERVICE_MODELS: {
33536
33512
  readonly stt: true;
33537
33513
  };
33538
33514
  };
33539
- readonly "nova-2-voicemail": {
33540
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_VOICEMAIL;
33515
+ readonly "nova-2-finance": {
33516
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_FINANCE;
33541
33517
  readonly limits: {
33542
33518
  readonly maxInputTokens: 0;
33543
33519
  readonly maxOutputTokens: 0;
@@ -33558,8 +33534,8 @@ export declare const LLM_SERVICE_MODELS: {
33558
33534
  readonly stt: true;
33559
33535
  };
33560
33536
  };
33561
- readonly "nova-2-atc": {
33562
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_ATC;
33537
+ readonly "nova-2-medical": {
33538
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_MEDICAL;
33563
33539
  readonly limits: {
33564
33540
  readonly maxInputTokens: 0;
33565
33541
  readonly maxOutputTokens: 0;
@@ -33580,8 +33556,8 @@ export declare const LLM_SERVICE_MODELS: {
33580
33556
  readonly stt: true;
33581
33557
  };
33582
33558
  };
33583
- readonly "nova-2-automotive": {
33584
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_AUTOMOTIVE;
33559
+ readonly "nova-2-meeting": {
33560
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_MEETING;
33585
33561
  readonly limits: {
33586
33562
  readonly maxInputTokens: 0;
33587
33563
  readonly maxOutputTokens: 0;
@@ -33602,8 +33578,8 @@ export declare const LLM_SERVICE_MODELS: {
33602
33578
  readonly stt: true;
33603
33579
  };
33604
33580
  };
33605
- readonly "nova-2-video": {
33606
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_VIDEO;
33581
+ readonly "nova-2-phonecall": {
33582
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_PHONECALL;
33607
33583
  readonly limits: {
33608
33584
  readonly maxInputTokens: 0;
33609
33585
  readonly maxOutputTokens: 0;
@@ -33624,8 +33600,8 @@ export declare const LLM_SERVICE_MODELS: {
33624
33600
  readonly stt: true;
33625
33601
  };
33626
33602
  };
33627
- readonly "nova-2-finance": {
33628
- readonly name: import("./providers").LLMAPIModelNames.NOVA_2_FINANCE;
33603
+ readonly "nova-2-video": {
33604
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_VIDEO;
33629
33605
  readonly limits: {
33630
33606
  readonly maxInputTokens: 0;
33631
33607
  readonly maxOutputTokens: 0;
@@ -33646,8 +33622,8 @@ export declare const LLM_SERVICE_MODELS: {
33646
33622
  readonly stt: true;
33647
33623
  };
33648
33624
  };
33649
- readonly "nova-3-multilingual": {
33650
- readonly name: import("./providers").LLMAPIModelNames.NOVA_3_MULTILINGUAL;
33625
+ readonly "nova-2-voicemail": {
33626
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_2_VOICEMAIL;
33651
33627
  readonly limits: {
33652
33628
  readonly maxInputTokens: 0;
33653
33629
  readonly maxOutputTokens: 0;
@@ -33668,8 +33644,8 @@ export declare const LLM_SERVICE_MODELS: {
33668
33644
  readonly stt: true;
33669
33645
  };
33670
33646
  };
33671
- readonly "whisper-tiny": {
33672
- readonly name: import("./providers").LLMAPIModelNames.WHISPER_TINY;
33647
+ readonly "nova-3": {
33648
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_3;
33673
33649
  readonly limits: {
33674
33650
  readonly maxInputTokens: 0;
33675
33651
  readonly maxOutputTokens: 0;
@@ -33690,8 +33666,8 @@ export declare const LLM_SERVICE_MODELS: {
33690
33666
  readonly stt: true;
33691
33667
  };
33692
33668
  };
33693
- readonly "whisper-base": {
33694
- readonly name: import("./providers").LLMAPIModelNames.WHISPER_BASE;
33669
+ readonly "nova-3-medical": {
33670
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_3_MEDICAL;
33695
33671
  readonly limits: {
33696
33672
  readonly maxInputTokens: 0;
33697
33673
  readonly maxOutputTokens: 0;
@@ -33712,8 +33688,8 @@ export declare const LLM_SERVICE_MODELS: {
33712
33688
  readonly stt: true;
33713
33689
  };
33714
33690
  };
33715
- readonly "whisper-small": {
33716
- readonly name: import("./providers").LLMAPIModelNames.WHISPER_SMALL;
33691
+ readonly "nova-3-multilingual": {
33692
+ readonly name: import("./providers").LLMAPIModelNames.NOVA_3_MULTILINGUAL;
33717
33693
  readonly limits: {
33718
33694
  readonly maxInputTokens: 0;
33719
33695
  readonly maxOutputTokens: 0;
@@ -33734,8 +33710,8 @@ export declare const LLM_SERVICE_MODELS: {
33734
33710
  readonly stt: true;
33735
33711
  };
33736
33712
  };
33737
- readonly "whisper-medium": {
33738
- readonly name: import("./providers").LLMAPIModelNames.WHISPER_MEDIUM;
33713
+ readonly "whisper-base": {
33714
+ readonly name: import("./providers").LLMAPIModelNames.WHISPER_BASE;
33739
33715
  readonly limits: {
33740
33716
  readonly maxInputTokens: 0;
33741
33717
  readonly maxOutputTokens: 0;
@@ -33778,74 +33754,8 @@ export declare const LLM_SERVICE_MODELS: {
33778
33754
  readonly stt: true;
33779
33755
  };
33780
33756
  };
33781
- readonly base: {
33782
- readonly name: import("./providers").LLMAPIModelNames.BASE;
33783
- readonly limits: {
33784
- readonly maxInputTokens: 0;
33785
- readonly maxOutputTokens: 0;
33786
- };
33787
- readonly config: {};
33788
- readonly pricing: {
33789
- readonly getPriceForTextInput: () => number;
33790
- readonly getPriceForTextOutput: () => number;
33791
- readonly getPriceForAudioInput: (seconds: number) => number;
33792
- readonly getPriceForAudioOutput: () => number;
33793
- readonly currency: "USD";
33794
- };
33795
- readonly capabilities: {
33796
- readonly vision: false;
33797
- readonly tools: false;
33798
- readonly reasoning: false;
33799
- readonly webSearch: false;
33800
- readonly stt: true;
33801
- };
33802
- };
33803
- readonly "base-meeting": {
33804
- readonly name: import("./providers").LLMAPIModelNames.BASE_MEETING;
33805
- readonly limits: {
33806
- readonly maxInputTokens: 0;
33807
- readonly maxOutputTokens: 0;
33808
- };
33809
- readonly config: {};
33810
- readonly pricing: {
33811
- readonly getPriceForTextInput: () => number;
33812
- readonly getPriceForTextOutput: () => number;
33813
- readonly getPriceForAudioInput: (seconds: number) => number;
33814
- readonly getPriceForAudioOutput: () => number;
33815
- readonly currency: "USD";
33816
- };
33817
- readonly capabilities: {
33818
- readonly vision: false;
33819
- readonly tools: false;
33820
- readonly reasoning: false;
33821
- readonly webSearch: false;
33822
- readonly stt: true;
33823
- };
33824
- };
33825
- readonly "base-phonecall": {
33826
- readonly name: import("./providers").LLMAPIModelNames.BASE_PHONECALL;
33827
- readonly limits: {
33828
- readonly maxInputTokens: 0;
33829
- readonly maxOutputTokens: 0;
33830
- };
33831
- readonly config: {};
33832
- readonly pricing: {
33833
- readonly getPriceForTextInput: () => number;
33834
- readonly getPriceForTextOutput: () => number;
33835
- readonly getPriceForAudioInput: (seconds: number) => number;
33836
- readonly getPriceForAudioOutput: () => number;
33837
- readonly currency: "USD";
33838
- };
33839
- readonly capabilities: {
33840
- readonly vision: false;
33841
- readonly tools: false;
33842
- readonly reasoning: false;
33843
- readonly webSearch: false;
33844
- readonly stt: true;
33845
- };
33846
- };
33847
- readonly "base-finance": {
33848
- readonly name: import("./providers").LLMAPIModelNames.BASE_FINANCE;
33757
+ readonly "whisper-medium": {
33758
+ readonly name: import("./providers").LLMAPIModelNames.WHISPER_MEDIUM;
33849
33759
  readonly limits: {
33850
33760
  readonly maxInputTokens: 0;
33851
33761
  readonly maxOutputTokens: 0;
@@ -33866,8 +33776,8 @@ export declare const LLM_SERVICE_MODELS: {
33866
33776
  readonly stt: true;
33867
33777
  };
33868
33778
  };
33869
- readonly "base-conversationalai": {
33870
- readonly name: import("./providers").LLMAPIModelNames.BASE_CONVERSATIONALAI;
33779
+ readonly "whisper-small": {
33780
+ readonly name: import("./providers").LLMAPIModelNames.WHISPER_SMALL;
33871
33781
  readonly limits: {
33872
33782
  readonly maxInputTokens: 0;
33873
33783
  readonly maxOutputTokens: 0;
@@ -33888,8 +33798,8 @@ export declare const LLM_SERVICE_MODELS: {
33888
33798
  readonly stt: true;
33889
33799
  };
33890
33800
  };
33891
- readonly "base-video": {
33892
- readonly name: import("./providers").LLMAPIModelNames.BASE_VIDEO;
33801
+ readonly "whisper-tiny": {
33802
+ readonly name: import("./providers").LLMAPIModelNames.WHISPER_TINY;
33893
33803
  readonly limits: {
33894
33804
  readonly maxInputTokens: 0;
33895
33805
  readonly maxOutputTokens: 0;
@@ -33910,8 +33820,8 @@ export declare const LLM_SERVICE_MODELS: {
33910
33820
  readonly stt: true;
33911
33821
  };
33912
33822
  };
33913
- readonly "base-voicemail": {
33914
- readonly name: import("./providers").LLMAPIModelNames.BASE_VOICEMAIL;
33823
+ readonly scribe_v1: {
33824
+ readonly name: import("./providers").LLMAPIModelNames.SCRIBE_V1;
33915
33825
  readonly limits: {
33916
33826
  readonly maxInputTokens: 0;
33917
33827
  readonly maxOutputTokens: 0;
@@ -33932,8 +33842,8 @@ export declare const LLM_SERVICE_MODELS: {
33932
33842
  readonly stt: true;
33933
33843
  };
33934
33844
  };
33935
- readonly enhanced: {
33936
- readonly name: import("./providers").LLMAPIModelNames.ENHANCED;
33845
+ readonly scribe_v2: {
33846
+ readonly name: import("./providers").LLMAPIModelNames.SCRIBE_V2;
33937
33847
  readonly limits: {
33938
33848
  readonly maxInputTokens: 0;
33939
33849
  readonly maxOutputTokens: 0;
@@ -33954,8 +33864,8 @@ export declare const LLM_SERVICE_MODELS: {
33954
33864
  readonly stt: true;
33955
33865
  };
33956
33866
  };
33957
- readonly "enhanced-meeting": {
33958
- readonly name: import("./providers").LLMAPIModelNames.ENHANCED_MEETING;
33867
+ readonly "gpt-4o-mini-transcribe": {
33868
+ readonly name: import("./providers").LLMAPIModelNames.GPT_4O_MINI_TRANSCRIBE;
33959
33869
  readonly limits: {
33960
33870
  readonly maxInputTokens: 0;
33961
33871
  readonly maxOutputTokens: 0;
@@ -33976,8 +33886,8 @@ export declare const LLM_SERVICE_MODELS: {
33976
33886
  readonly stt: true;
33977
33887
  };
33978
33888
  };
33979
- readonly "enhanced-phonecall": {
33980
- readonly name: import("./providers").LLMAPIModelNames.ENHANCED_PHONECALL;
33889
+ readonly "gpt-4o-transcribe": {
33890
+ readonly name: import("./providers").LLMAPIModelNames.GPT_4O_TRANSCRIBE;
33981
33891
  readonly limits: {
33982
33892
  readonly maxInputTokens: 0;
33983
33893
  readonly maxOutputTokens: 0;
@@ -33998,8 +33908,8 @@ export declare const LLM_SERVICE_MODELS: {
33998
33908
  readonly stt: true;
33999
33909
  };
34000
33910
  };
34001
- readonly "enhanced-finance": {
34002
- readonly name: import("./providers").LLMAPIModelNames.ENHANCED_FINANCE;
33911
+ readonly "whisper-1": {
33912
+ readonly name: import("./providers").LLMAPIModelNames.WHISPER_1;
34003
33913
  readonly limits: {
34004
33914
  readonly maxInputTokens: 0;
34005
33915
  readonly maxOutputTokens: 0;