@mate-academy/llm-gateway 7.1.2 → 7.1.4
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 +2577 -849
- package/dist/providers/LLMAPI/LLMAPI.constants.d.ts +4508 -1916
- package/dist/providers/LLMAPI/LLMAPI.constants.js +254 -0
- package/dist/providers/LLMAPI/LLMAPI.constants.js.map +1 -1
- package/dist/providers/LLMAPI/LLMAPI.typedefs.d.ts +36 -0
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js +36 -0
- package/dist/providers/LLMAPI/LLMAPI.typedefs.js.map +1 -1
- package/package.json +1 -1
|
@@ -2555,6 +2555,260 @@ exports.LLMAPI_AVAILABLE_MODELS = {
|
|
|
2555
2555
|
},
|
|
2556
2556
|
capabilities: { vision: false, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: false },
|
|
2557
2557
|
},
|
|
2558
|
+
// ─── OpenAI explicit provider variants ────────────────────────
|
|
2559
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI]: {
|
|
2560
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_OPENAI,
|
|
2561
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2562
|
+
config: { temperature: 1 },
|
|
2563
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2564
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2565
|
+
},
|
|
2566
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE]: {
|
|
2567
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_AZURE,
|
|
2568
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2569
|
+
config: { temperature: 1 },
|
|
2570
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2571
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2572
|
+
},
|
|
2573
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI]: {
|
|
2574
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_OPENAI,
|
|
2575
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2576
|
+
config: { temperature: 1 },
|
|
2577
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2578
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2579
|
+
},
|
|
2580
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE]: {
|
|
2581
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_MINI_AZURE,
|
|
2582
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2583
|
+
config: { temperature: 1 },
|
|
2584
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2585
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2586
|
+
},
|
|
2587
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI]: {
|
|
2588
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_OPENAI,
|
|
2589
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2590
|
+
config: { temperature: 1 },
|
|
2591
|
+
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2592
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2593
|
+
},
|
|
2594
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE]: {
|
|
2595
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_NANO_AZURE,
|
|
2596
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2597
|
+
config: { temperature: 1 },
|
|
2598
|
+
pricing: { getPriceForTextInput: (tokens) => 0.05 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2599
|
+
capabilities: { vision: false, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2600
|
+
},
|
|
2601
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI]: {
|
|
2602
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_OPENAI,
|
|
2603
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2604
|
+
config: { temperature: 1 },
|
|
2605
|
+
pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2606
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2607
|
+
},
|
|
2608
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE]: {
|
|
2609
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_PRO_AZURE,
|
|
2610
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2611
|
+
config: { temperature: 1 },
|
|
2612
|
+
pricing: { getPriceForTextInput: (tokens) => 15 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 120 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2613
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2614
|
+
},
|
|
2615
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI]: {
|
|
2616
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_OPENAI,
|
|
2617
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2618
|
+
config: { temperature: 1 },
|
|
2619
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2620
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2621
|
+
},
|
|
2622
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE]: {
|
|
2623
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_AZURE,
|
|
2624
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2625
|
+
config: { temperature: 1 },
|
|
2626
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2627
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2628
|
+
},
|
|
2629
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI]: {
|
|
2630
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_OPENAI,
|
|
2631
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2632
|
+
config: { temperature: 1 },
|
|
2633
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2634
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2635
|
+
},
|
|
2636
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE]: {
|
|
2637
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_AZURE,
|
|
2638
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2639
|
+
config: { temperature: 1 },
|
|
2640
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2641
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2642
|
+
},
|
|
2643
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI]: {
|
|
2644
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_OPENAI,
|
|
2645
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2646
|
+
config: { temperature: 1 },
|
|
2647
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2648
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2649
|
+
},
|
|
2650
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE]: {
|
|
2651
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_1_CODEX_MINI_AZURE,
|
|
2652
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2653
|
+
config: { temperature: 1 },
|
|
2654
|
+
pricing: { getPriceForTextInput: (tokens) => 0.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2655
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2656
|
+
},
|
|
2657
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI]: {
|
|
2658
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_OPENAI,
|
|
2659
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2660
|
+
config: { temperature: 1 },
|
|
2661
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2662
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2663
|
+
},
|
|
2664
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE]: {
|
|
2665
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_AZURE,
|
|
2666
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2667
|
+
config: { temperature: 1 },
|
|
2668
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2669
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2670
|
+
},
|
|
2671
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI]: {
|
|
2672
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_OPENAI,
|
|
2673
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2674
|
+
config: { temperature: 1 },
|
|
2675
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2676
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2677
|
+
},
|
|
2678
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE]: {
|
|
2679
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_2_CODEX_AZURE,
|
|
2680
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2681
|
+
config: { temperature: 1 },
|
|
2682
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2683
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2684
|
+
},
|
|
2685
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI]: {
|
|
2686
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_OPENAI,
|
|
2687
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2688
|
+
config: { temperature: 1 },
|
|
2689
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2690
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2691
|
+
},
|
|
2692
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE]: {
|
|
2693
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_3_CODEX_AZURE,
|
|
2694
|
+
limits: { maxInputTokens: 400_000, maxOutputTokens: 128_000 },
|
|
2695
|
+
config: { temperature: 1 },
|
|
2696
|
+
pricing: { getPriceForTextInput: (tokens) => 1.75 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 14 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2697
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2698
|
+
},
|
|
2699
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI]: {
|
|
2700
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_OPENAI,
|
|
2701
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2702
|
+
config: { temperature: 1 },
|
|
2703
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2704
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2705
|
+
},
|
|
2706
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE]: {
|
|
2707
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_AZURE,
|
|
2708
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2709
|
+
config: { temperature: 1 },
|
|
2710
|
+
pricing: { getPriceForTextInput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 15 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2711
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2712
|
+
},
|
|
2713
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI]: {
|
|
2714
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_OPENAI,
|
|
2715
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2716
|
+
config: { temperature: 1 },
|
|
2717
|
+
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2718
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2719
|
+
},
|
|
2720
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE]: {
|
|
2721
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GPT_5_4_PRO_AZURE,
|
|
2722
|
+
limits: { maxInputTokens: 1_050_000, maxOutputTokens: 128_000 },
|
|
2723
|
+
config: { temperature: 1 },
|
|
2724
|
+
pricing: { getPriceForTextInput: (tokens) => 30 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 180 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2725
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2726
|
+
},
|
|
2727
|
+
// ─── Gemini explicit provider variants ────────────────────────
|
|
2728
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO]: {
|
|
2729
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_AI_STUDIO,
|
|
2730
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2731
|
+
config: { temperature: 0.2 },
|
|
2732
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2733
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2734
|
+
},
|
|
2735
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX]: {
|
|
2736
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_PRO_GOOGLE_VERTEX,
|
|
2737
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2738
|
+
config: { temperature: 0.2 },
|
|
2739
|
+
pricing: { getPriceForTextInput: (tokens) => 1.25 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 10 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2740
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2741
|
+
},
|
|
2742
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO]: {
|
|
2743
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_AI_STUDIO,
|
|
2744
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2745
|
+
config: { temperature: 0.2 },
|
|
2746
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2747
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2748
|
+
},
|
|
2749
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX]: {
|
|
2750
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_GOOGLE_VERTEX,
|
|
2751
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2752
|
+
config: { temperature: 0.2 },
|
|
2753
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 2.5 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2754
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2755
|
+
},
|
|
2756
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO]: {
|
|
2757
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_AI_STUDIO,
|
|
2758
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2759
|
+
config: { temperature: 0.2 },
|
|
2760
|
+
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2761
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
2762
|
+
},
|
|
2763
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX]: {
|
|
2764
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_LITE_GOOGLE_VERTEX,
|
|
2765
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2766
|
+
config: { temperature: 0.2 },
|
|
2767
|
+
pricing: { getPriceForTextInput: (tokens) => 0.1 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 0.4 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2768
|
+
capabilities: { vision: true, tools: true, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
2769
|
+
},
|
|
2770
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO]: {
|
|
2771
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_AI_STUDIO,
|
|
2772
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2773
|
+
config: { temperature: 0.2 },
|
|
2774
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2775
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2776
|
+
},
|
|
2777
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX]: {
|
|
2778
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_1_PRO_PREVIEW_GOOGLE_VERTEX,
|
|
2779
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2780
|
+
config: { temperature: 0.2 },
|
|
2781
|
+
pricing: { getPriceForTextInput: (tokens) => 2 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 12 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2782
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2783
|
+
},
|
|
2784
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO]: {
|
|
2785
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_AI_STUDIO,
|
|
2786
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2787
|
+
config: { temperature: 0.2 },
|
|
2788
|
+
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2789
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2790
|
+
},
|
|
2791
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX]: {
|
|
2792
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_3_FLASH_PREVIEW_GOOGLE_VERTEX,
|
|
2793
|
+
limits: { maxInputTokens: 1_048_576, maxOutputTokens: 65_536 },
|
|
2794
|
+
config: { temperature: 0.2 },
|
|
2795
|
+
pricing: { getPriceForTextInput: (tokens) => 0.5 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 3 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2796
|
+
capabilities: { vision: true, tools: true, reasoning: true, webSearch: true, jsonResponseWithTools: true },
|
|
2797
|
+
},
|
|
2798
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO]: {
|
|
2799
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_AI_STUDIO,
|
|
2800
|
+
limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
|
|
2801
|
+
config: { temperature: 0.2 },
|
|
2802
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2803
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
2804
|
+
},
|
|
2805
|
+
[LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX]: {
|
|
2806
|
+
name: LLMAPI_typedefs_1.LLMAPIModelNames.GEMINI_2_5_FLASH_IMAGE_GOOGLE_VERTEX,
|
|
2807
|
+
limits: { maxInputTokens: 32_768, maxOutputTokens: 65_536 },
|
|
2808
|
+
config: { temperature: 0.2 },
|
|
2809
|
+
pricing: { getPriceForTextInput: (tokens) => 0.3 * tokens / 1_000_000, getPriceForTextOutput: (tokens) => 30 * tokens / 1_000_000, getPriceForAudioInput: () => 0, getPriceForAudioOutput: () => 0, currency: 'USD' },
|
|
2810
|
+
capabilities: { vision: true, tools: false, reasoning: false, webSearch: false, jsonResponseWithTools: true },
|
|
2811
|
+
},
|
|
2558
2812
|
};
|
|
2559
2813
|
const LLMAPI_COMPLETION_MODELS = exports.LLMAPI_AVAILABLE_MODELS;
|
|
2560
2814
|
exports.LLMAPI_MODELS = {
|