n8n-nodes-vercel-ai-sdk-universal-temp 0.2.65 → 0.2.67
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/README.md +0 -1
- package/dist/credentials/DeepSeekApi.credentials.js.map +1 -1
- package/dist/credentials/GroqApi.credentials.js.map +1 -1
- package/dist/credentials/LettaApi.credentials.js.map +1 -1
- package/dist/nodes/UniversalAI/UniversalAI.node.js +76 -71
- package/dist/nodes/UniversalAI/UniversalAI.node.js.map +1 -1
- package/dist/nodes/UniversalAgent/UniversalAgent.node.d.ts +1 -1
- package/dist/nodes/UniversalAgent/UniversalAgent.node.js +78 -42
- package/dist/nodes/UniversalAgent/UniversalAgent.node.js.map +1 -1
- package/dist/nodes/UniversalEmbedding/UniversalEmbedding.node.js +3 -4
- package/dist/nodes/UniversalEmbedding/UniversalEmbedding.node.js.map +1 -1
- package/dist/nodes/UniversalSpeechGen/UniversalSpeechGen.node.js.map +1 -1
- package/dist/nodes/UniversalTranscription/UniversalTranscription.node.js +1 -1
- package/dist/nodes/UniversalTranscription/UniversalTranscription.node.js.map +1 -1
- package/dist/nodes/shared/cache/cache.js +10 -2
- package/dist/nodes/shared/cache/cache.js.map +1 -1
- package/dist/nodes/shared/constants.js.map +1 -1
- package/dist/nodes/shared/descriptions.js +2 -2
- package/dist/nodes/shared/descriptions.js.map +1 -1
- package/dist/nodes/shared/google/index.js +7 -6
- package/dist/nodes/shared/google/index.js.map +1 -1
- package/dist/nodes/shared/helpers.d.ts +3 -3
- package/dist/nodes/shared/helpers.js +8 -8
- package/dist/nodes/shared/helpers.js.map +1 -1
- package/dist/nodes/shared/letta/client.js +14 -5
- package/dist/nodes/shared/letta/client.js.map +1 -1
- package/dist/nodes/shared/letta/index.js +2 -2
- package/dist/nodes/shared/letta/index.js.map +1 -1
- package/dist/nodes/shared/letta/load-options.js.map +1 -1
- package/dist/nodes/shared/model-lists.js +646 -130
- package/dist/nodes/shared/model-lists.js.map +1 -1
- package/dist/nodes/shared/providers/factory.js.map +1 -1
- package/dist/nodes/shared/providers/registry.js +3 -3
- package/dist/nodes/shared/providers/registry.js.map +1 -1
- package/dist/nodes/shared/validation/options.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +80 -80
|
@@ -2,26 +2,74 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.LETTA_MODELS = exports.OPENAI_VOICE_MODELS = exports.GOOGLE_VOICE_MODELS = exports.GROQ_MODELS = exports.DEEPSEEK_MODELS = exports.OPENAI_TRANSCRIPTION_MODELS = exports.OPENAI_TTS_MODELS = exports.OPENAI_IMAGE_MODELS = exports.OPENAI_EMBEDDING_MODELS = exports.OPENAI_CHAT_MODELS = exports.GOOGLE_TRANSCRIPTION_MODELS = exports.GOOGLE_IMAGE_MODELS = exports.GOOGLE_EMBEDDING_MODELS = exports.GOOGLE_GEMINI_MODELS = exports.OPENROUTER_MODELS = void 0;
|
|
4
4
|
exports.OPENROUTER_MODELS = [
|
|
5
|
-
{
|
|
5
|
+
{
|
|
6
|
+
name: 'Google Gemini 2.5 Flash Image',
|
|
7
|
+
value: 'google/gemini-2.5-flash-image',
|
|
8
|
+
description: 'Latest Gemini with image support',
|
|
9
|
+
},
|
|
6
10
|
{ name: 'OpenAI GPT-5 Pro', value: 'openai/gpt-5-pro', description: 'Most capable GPT-5 model' },
|
|
7
|
-
{
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
{
|
|
11
|
+
{
|
|
12
|
+
name: 'Anthropic Claude Sonnet 4.5',
|
|
13
|
+
value: 'anthropic/claude-sonnet-4.5',
|
|
14
|
+
description: 'Latest Claude model',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
name: 'DeepSeek V3.2 Experimental',
|
|
18
|
+
value: 'deepseek/deepseek-v3.2-exp',
|
|
19
|
+
description: 'Experimental DeepSeek model',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Google Gemini 2.5 Flash Preview',
|
|
23
|
+
value: 'google/gemini-2.5-flash-preview-09-2025',
|
|
24
|
+
description: 'Preview version',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Google Gemini 2.5 Flash Lite Preview',
|
|
28
|
+
value: 'google/gemini-2.5-flash-lite-preview-09-2025',
|
|
29
|
+
description: 'Lite preview version',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: 'Qwen3 VL 235B Thinking',
|
|
33
|
+
value: 'qwen/qwen3-vl-235b-a22b-thinking',
|
|
34
|
+
description: 'Vision-language with reasoning',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'Qwen3 VL 235B Instruct',
|
|
38
|
+
value: 'qwen/qwen3-vl-235b-a22b-instruct',
|
|
39
|
+
description: 'Vision-language instruct',
|
|
40
|
+
},
|
|
13
41
|
{ name: 'Qwen3 Max', value: 'qwen/qwen3-max', description: 'Most capable Qwen model' },
|
|
14
|
-
{
|
|
42
|
+
{
|
|
43
|
+
name: 'Qwen3 Coder Plus',
|
|
44
|
+
value: 'qwen/qwen3-coder-plus',
|
|
45
|
+
description: 'Advanced coding model',
|
|
46
|
+
},
|
|
15
47
|
{ name: 'Qwen3 Coder Flash', value: 'qwen/qwen3-coder-flash', description: 'Fast coding model' },
|
|
16
48
|
{ name: 'Qwen3 235B A22B', value: 'qwen/qwen3-235b-a22b', description: 'Large Qwen model' },
|
|
17
49
|
{ name: 'Qwen3 30B A3B', value: 'qwen/qwen3-30b-a3b', description: 'Medium Qwen model' },
|
|
18
50
|
{ name: 'Qwen3 8B', value: 'qwen/qwen3-8b', description: 'Small efficient model' },
|
|
19
51
|
{ name: 'Qwen3 14B', value: 'qwen/qwen3-14b', description: 'Mid-size model' },
|
|
20
52
|
{ name: 'Qwen3 32B', value: 'qwen/qwen3-32b', description: 'Large model' },
|
|
21
|
-
{
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
53
|
+
{
|
|
54
|
+
name: 'Qwen Plus 2025-07-28',
|
|
55
|
+
value: 'qwen/qwen-plus-2025-07-28',
|
|
56
|
+
description: 'Latest Qwen Plus',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'Qwen2.5 Coder 32B Instruct',
|
|
60
|
+
value: 'qwen/qwen-2.5-coder-32b-instruct',
|
|
61
|
+
description: 'Coding specialist',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: 'Qwen2.5 72B Instruct',
|
|
65
|
+
value: 'qwen/qwen2.5-72b-instruct',
|
|
66
|
+
description: 'Large instruct model',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'Qwen2.5 VL 72B Instruct',
|
|
70
|
+
value: 'qwen/qwen2.5-vl-72b-instruct',
|
|
71
|
+
description: 'Vision-language model',
|
|
72
|
+
},
|
|
25
73
|
{ name: 'OpenAI GPT-5', value: 'openai/gpt-5', description: 'GPT-5 base model' },
|
|
26
74
|
{ name: 'OpenAI GPT-5 Mini', value: 'openai/gpt-5-mini', description: 'Smaller GPT-5' },
|
|
27
75
|
{ name: 'OpenAI GPT-5 Nano', value: 'openai/gpt-5-nano', description: 'Tiny GPT-5' },
|
|
@@ -36,34 +84,78 @@ exports.OPENROUTER_MODELS = [
|
|
|
36
84
|
{ name: 'OpenAI O1 Pro', value: 'openai/o1-pro', description: 'Pro reasoning' },
|
|
37
85
|
{ name: 'OpenAI GPT-4o', value: 'openai/gpt-4o', description: 'GPT-4 optimized' },
|
|
38
86
|
{ name: 'OpenAI GPT-4o Mini', value: 'openai/gpt-4o-mini', description: 'Compact GPT-4o' },
|
|
39
|
-
{
|
|
87
|
+
{
|
|
88
|
+
name: 'OpenAI GPT-4o Audio Preview',
|
|
89
|
+
value: 'openai/gpt-4o-audio-preview',
|
|
90
|
+
description: 'Audio support',
|
|
91
|
+
},
|
|
40
92
|
{ name: 'OpenAI GPT-4.1', value: 'openai/gpt-4.1', description: 'GPT-4.1 base' },
|
|
41
93
|
{ name: 'OpenAI GPT-4.1 Mini', value: 'openai/gpt-4.1-mini', description: 'Compact GPT-4.1' },
|
|
42
94
|
{ name: 'OpenAI GPT-4 Turbo', value: 'openai/gpt-4-turbo', description: 'Fast GPT-4' },
|
|
43
|
-
{
|
|
44
|
-
|
|
95
|
+
{
|
|
96
|
+
name: 'OpenAI GPT-3.5 Turbo',
|
|
97
|
+
value: 'openai/gpt-3.5-turbo',
|
|
98
|
+
description: 'Fast and efficient',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
name: 'Claude Opus 4.1',
|
|
102
|
+
value: 'anthropic/claude-opus-4.1',
|
|
103
|
+
description: 'Most capable Claude',
|
|
104
|
+
},
|
|
45
105
|
{ name: 'Claude Opus 4', value: 'anthropic/claude-opus-4', description: 'Claude Opus 4' },
|
|
46
106
|
{ name: 'Claude Sonnet 4', value: 'anthropic/claude-sonnet-4', description: 'Balanced Claude' },
|
|
47
|
-
{
|
|
48
|
-
|
|
107
|
+
{
|
|
108
|
+
name: 'Claude 3.7 Sonnet',
|
|
109
|
+
value: 'anthropic/claude-3.7-sonnet',
|
|
110
|
+
description: 'Latest 3.7 Sonnet',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name: 'Claude 3.5 Sonnet',
|
|
114
|
+
value: 'anthropic/claude-3.5-sonnet',
|
|
115
|
+
description: 'Claude 3.5 Sonnet',
|
|
116
|
+
},
|
|
49
117
|
{ name: 'Claude 3.5 Haiku', value: 'anthropic/claude-3.5-haiku', description: 'Fast Claude' },
|
|
50
118
|
{ name: 'Claude 3 Opus', value: 'anthropic/claude-3-opus', description: 'Claude 3 Opus' },
|
|
51
119
|
{ name: 'Claude 3 Haiku', value: 'anthropic/claude-3-haiku', description: 'Claude 3 Haiku' },
|
|
52
|
-
{
|
|
120
|
+
{
|
|
121
|
+
name: 'DeepSeek Chat V3.1',
|
|
122
|
+
value: 'deepseek/deepseek-chat-v3.1',
|
|
123
|
+
description: 'Latest chat model',
|
|
124
|
+
},
|
|
53
125
|
{ name: 'DeepSeek Chat', value: 'deepseek/deepseek-chat', description: 'DeepSeek chat' },
|
|
54
126
|
{ name: 'DeepSeek R1', value: 'deepseek/deepseek-r1', description: 'Reasoning model' },
|
|
55
127
|
{ name: 'DeepSeek R1 0528', value: 'deepseek/deepseek-r1-0528', description: 'R1 version 0528' },
|
|
56
|
-
{
|
|
57
|
-
|
|
128
|
+
{
|
|
129
|
+
name: 'DeepSeek R1 Distill Llama 70B',
|
|
130
|
+
value: 'deepseek/deepseek-r1-distill-llama-70b',
|
|
131
|
+
description: 'Distilled model',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: 'DeepSeek Prover V2',
|
|
135
|
+
value: 'deepseek/deepseek-prover-v2',
|
|
136
|
+
description: 'Mathematical reasoning',
|
|
137
|
+
},
|
|
58
138
|
{ name: 'Grok 4', value: 'x-ai/grok-4', description: 'Latest Grok' },
|
|
59
139
|
{ name: 'Grok 4 Fast', value: 'x-ai/grok-4-fast', description: 'Fast Grok 4' },
|
|
60
140
|
{ name: 'Grok 3', value: 'x-ai/grok-3', description: 'Grok 3' },
|
|
61
141
|
{ name: 'Grok 3 Mini', value: 'x-ai/grok-3-mini', description: 'Compact Grok 3' },
|
|
62
142
|
{ name: 'Grok Code Fast 1', value: 'x-ai/grok-code-fast-1', description: 'Fast coding' },
|
|
63
|
-
{
|
|
143
|
+
{
|
|
144
|
+
name: 'Google Gemini 2.5 Pro',
|
|
145
|
+
value: 'google/gemini-2.5-pro',
|
|
146
|
+
description: 'Most capable Gemini',
|
|
147
|
+
},
|
|
64
148
|
{ name: 'Google Gemini 2.5 Flash', value: 'google/gemini-2.5-flash', description: 'Fast Gemini' },
|
|
65
|
-
{
|
|
66
|
-
|
|
149
|
+
{
|
|
150
|
+
name: 'Google Gemini 2.5 Flash Lite',
|
|
151
|
+
value: 'google/gemini-2.5-flash-lite',
|
|
152
|
+
description: 'Lightweight Gemini',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
name: 'Google Gemini 2.0 Flash',
|
|
156
|
+
value: 'google/gemini-2.0-flash-001',
|
|
157
|
+
description: 'Gemini 2.0',
|
|
158
|
+
},
|
|
67
159
|
{ name: 'Google Gemma 3 27B', value: 'google/gemma-3-27b-it', description: 'Large Gemma' },
|
|
68
160
|
{ name: 'Google Gemma 3 12B', value: 'google/gemma-3-12b-it', description: 'Medium Gemma' },
|
|
69
161
|
{ name: 'Google Gemma 3 4B', value: 'google/gemma-3-4b-it', description: 'Small Gemma' },
|
|
@@ -71,125 +163,469 @@ exports.OPENROUTER_MODELS = [
|
|
|
71
163
|
{ name: 'Google Gemma 2 9B', value: 'google/gemma-2-9b-it', description: 'Gemma 2 medium' },
|
|
72
164
|
{ name: 'Llama 4 Maverick', value: 'meta-llama/llama-4-maverick', description: 'Latest Llama' },
|
|
73
165
|
{ name: 'Llama 4 Scout', value: 'meta-llama/llama-4-scout', description: 'Llama 4 Scout' },
|
|
74
|
-
{
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
{
|
|
80
|
-
|
|
166
|
+
{
|
|
167
|
+
name: 'Llama 3.3 70B Instruct',
|
|
168
|
+
value: 'meta-llama/llama-3.3-70b-instruct',
|
|
169
|
+
description: 'Llama 3.3 large',
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
name: 'Llama 3.3 8B Instruct',
|
|
173
|
+
value: 'meta-llama/llama-3.3-8b-instruct',
|
|
174
|
+
description: 'Llama 3.3 small',
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
name: 'Llama 3.1 405B',
|
|
178
|
+
value: 'meta-llama/llama-3.1-405b-instruct',
|
|
179
|
+
description: 'Largest Llama',
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
name: 'Llama 3.1 70B',
|
|
183
|
+
value: 'meta-llama/llama-3.1-70b-instruct',
|
|
184
|
+
description: 'Llama 3.1 large',
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
name: 'Llama 3.1 8B',
|
|
188
|
+
value: 'meta-llama/llama-3.1-8b-instruct',
|
|
189
|
+
description: 'Llama 3.1 small',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
name: 'Llama 3.2 90B Vision',
|
|
193
|
+
value: 'meta-llama/llama-3.2-90b-vision-instruct',
|
|
194
|
+
description: 'Vision model',
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
name: 'Llama 3.2 11B Vision',
|
|
198
|
+
value: 'meta-llama/llama-3.2-11b-vision-instruct',
|
|
199
|
+
description: 'Compact vision',
|
|
200
|
+
},
|
|
81
201
|
{ name: 'Llama 3.2 3B', value: 'meta-llama/llama-3.2-3b-instruct', description: 'Tiny Llama' },
|
|
82
202
|
{ name: 'Llama 3 70B', value: 'meta-llama/llama-3-70b-instruct', description: 'Llama 3 large' },
|
|
83
203
|
{ name: 'Llama 3 8B', value: 'meta-llama/llama-3-8b-instruct', description: 'Llama 3 small' },
|
|
84
|
-
{
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
{
|
|
204
|
+
{
|
|
205
|
+
name: 'Mistral Medium 3.1',
|
|
206
|
+
value: 'mistralai/mistral-medium-3.1',
|
|
207
|
+
description: 'Medium Mistral',
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
name: 'Mistral Medium 3',
|
|
211
|
+
value: 'mistralai/mistral-medium-3',
|
|
212
|
+
description: 'Mistral Medium 3',
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
name: 'Mistral Large 2411',
|
|
216
|
+
value: 'mistralai/mistral-large-2411',
|
|
217
|
+
description: 'Large Mistral',
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
name: 'Mistral Large 2407',
|
|
221
|
+
value: 'mistralai/mistral-large-2407',
|
|
222
|
+
description: 'Mistral Large July',
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
name: 'Mistral Small 3.2 24B',
|
|
226
|
+
value: 'mistralai/mistral-small-3.2-24b-instruct',
|
|
227
|
+
description: 'Small Mistral',
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
name: 'Mistral Small 3.1 24B',
|
|
231
|
+
value: 'mistralai/mistral-small-3.1-24b-instruct',
|
|
232
|
+
description: 'Mistral Small 3.1',
|
|
233
|
+
},
|
|
90
234
|
{ name: 'Mistral Nemo', value: 'mistralai/mistral-nemo', description: 'Compact Mistral' },
|
|
91
|
-
{
|
|
235
|
+
{
|
|
236
|
+
name: 'Mistral 7B Instruct',
|
|
237
|
+
value: 'mistralai/mistral-7b-instruct',
|
|
238
|
+
description: 'Base Mistral',
|
|
239
|
+
},
|
|
92
240
|
{ name: 'Mixtral 8x22B', value: 'mistralai/mixtral-8x22b-instruct', description: 'Large MoE' },
|
|
93
241
|
{ name: 'Mixtral 8x7B', value: 'mistralai/mixtral-8x7b-instruct', description: 'MoE model' },
|
|
94
242
|
{ name: 'Codestral 2508', value: 'mistralai/codestral-2508', description: 'Latest coding' },
|
|
95
243
|
{ name: 'Codestral 2501', value: 'mistralai/codestral-2501', description: 'Coding specialist' },
|
|
96
|
-
{
|
|
244
|
+
{
|
|
245
|
+
name: 'Pixtral Large 2411',
|
|
246
|
+
value: 'mistralai/pixtral-large-2411',
|
|
247
|
+
description: 'Vision model',
|
|
248
|
+
},
|
|
97
249
|
{ name: 'Pixtral 12B', value: 'mistralai/pixtral-12b', description: 'Compact vision' },
|
|
98
|
-
{
|
|
250
|
+
{
|
|
251
|
+
name: 'Perplexity Sonar Reasoning Pro',
|
|
252
|
+
value: 'perplexity/sonar-reasoning-pro',
|
|
253
|
+
description: 'Advanced reasoning',
|
|
254
|
+
},
|
|
99
255
|
{ name: 'Perplexity Sonar Pro', value: 'perplexity/sonar-pro', description: 'Pro search' },
|
|
100
256
|
{ name: 'Perplexity Sonar', value: 'perplexity/sonar', description: 'Search model' },
|
|
101
257
|
{ name: 'Perplexity R1 1776', value: 'perplexity/r1-1776', description: 'R1 model' },
|
|
102
258
|
{ name: 'Cohere Command A', value: 'cohere/command-a', description: 'Command A' },
|
|
103
|
-
{
|
|
259
|
+
{
|
|
260
|
+
name: 'Cohere Command R Plus',
|
|
261
|
+
value: 'cohere/command-r-plus-08-2024',
|
|
262
|
+
description: 'Command R Plus',
|
|
263
|
+
},
|
|
104
264
|
{ name: 'Cohere Command R', value: 'cohere/command-r-08-2024', description: 'Command R' },
|
|
105
|
-
{
|
|
265
|
+
{
|
|
266
|
+
name: 'Cohere Command R7B',
|
|
267
|
+
value: 'cohere/command-r7b-12-2024',
|
|
268
|
+
description: 'Compact Command',
|
|
269
|
+
},
|
|
106
270
|
{ name: 'MiniMax M1', value: 'minimax/minimax-m1', description: 'MiniMax M1' },
|
|
107
271
|
{ name: 'MiniMax 01', value: 'minimax/minimax-01', description: 'MiniMax 01' },
|
|
108
272
|
{ name: 'Moonshotai Kimi K2', value: 'moonshotai/kimi-k2', description: 'Kimi K2' },
|
|
109
|
-
{
|
|
273
|
+
{
|
|
274
|
+
name: 'Nvidia Nemotron 70B',
|
|
275
|
+
value: 'nvidia/llama-3.1-nemotron-70b-instruct',
|
|
276
|
+
description: 'Nvidia tuned',
|
|
277
|
+
},
|
|
110
278
|
{ name: 'Microsoft Phi 4', value: 'microsoft/phi-4', description: 'Phi 4' },
|
|
111
|
-
{
|
|
279
|
+
{
|
|
280
|
+
name: 'Microsoft Phi 4 Multimodal',
|
|
281
|
+
value: 'microsoft/phi-4-multimodal-instruct',
|
|
282
|
+
description: 'Multimodal Phi',
|
|
283
|
+
},
|
|
112
284
|
{ name: 'Amazon Nova Pro', value: 'amazon/nova-pro-v1', description: 'Amazon Nova Pro' },
|
|
113
285
|
{ name: 'Amazon Nova Lite', value: 'amazon/nova-lite-v1', description: 'Amazon Nova Lite' },
|
|
114
286
|
{ name: 'OpenRouter Auto', value: 'openrouter/auto', description: 'Automatic model selection' },
|
|
115
|
-
{
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
{
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
{
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
{
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
287
|
+
{
|
|
288
|
+
name: 'Alibaba Tongyi Deepresearch 30B A3B FREE',
|
|
289
|
+
value: 'alibaba/tongyi-deepresearch-30b-a3b:free',
|
|
290
|
+
description: 'Alibaba DeepResearch 30B',
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
name: 'Meituan Longcat Flash Chat FREE',
|
|
294
|
+
value: 'meituan/longcat-flash-chat:free',
|
|
295
|
+
description: 'Meituan Longcat Flash Chat',
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
name: 'Nvidia Nemotron Nano 9B V2 FREE',
|
|
299
|
+
value: 'nvidia/nemotron-nano-9b-v2:free',
|
|
300
|
+
description: 'Nvidia Nemotron Nano 9B V2',
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
name: 'Deepseek Deepseek Chat V3.1 FREE',
|
|
304
|
+
value: 'deepseek/deepseek-chat-v3.1:free',
|
|
305
|
+
description: 'Deepseek Deepseek Chat V3.1',
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
name: 'OpenAI GPT OSS 20B FREE',
|
|
309
|
+
value: 'openai/gpt-oss-20b:free',
|
|
310
|
+
description: 'OpenAI GPT OSS 20B',
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
name: 'Z-AI GLM 4.5 Air FREE',
|
|
314
|
+
value: 'z-ai/glm-4.5-air:free',
|
|
315
|
+
description: 'Z-AI GLM 4.5 Air',
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
name: 'Qwen Qwen3 Coder FREE',
|
|
319
|
+
value: 'qwen/qwen3-coder:free',
|
|
320
|
+
description: 'Qwen Qwen3 Coder',
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
name: 'Moonshotai Kimi K2 FREE',
|
|
324
|
+
value: 'moonshotai/kimi-k2:free',
|
|
325
|
+
description: 'Moonshotai Kimi K2',
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
name: 'CognitiveComputations Dolphin Mistral 24B Venice Edition FREE',
|
|
329
|
+
value: 'cognitivecomputations/dolphin-mistral-24b-venice-edition:free',
|
|
330
|
+
description: 'CognitiveComputations Dolphin Mistral 24B Venice Edition',
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
name: 'Google Gemma 3N E2B IT FREE',
|
|
334
|
+
value: 'google/gemma-3n-e2b-it:free',
|
|
335
|
+
description: 'Google Gemma 3N E2B IT',
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
name: 'Tencent Hunyuan A13B Instruct FREE',
|
|
339
|
+
value: 'tencent/hunyuan-a13b-instruct:free',
|
|
340
|
+
description: 'Tencent Hunyuan A13B Instruct',
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
name: 'TNGTech Deepseek R1T2 Chimera FREE',
|
|
344
|
+
value: 'tngtech/deepseek-r1t2-chimera:free',
|
|
345
|
+
description: 'TNGTech Deepseek R1T2 Chimera',
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
name: 'MistralAI Mistral Small 3.2 24B Instruct FREE',
|
|
349
|
+
value: 'mistralai/mistral-small-3.2-24b-instruct:free',
|
|
350
|
+
description: 'MistralAI Mistral Small 3.2 24B Instruct',
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
name: 'Moonshotai Kimi Dev 72B FREE',
|
|
354
|
+
value: 'moonshotai/kimi-dev-72b:free',
|
|
355
|
+
description: 'Moonshotai Kimi Dev 72B',
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
name: 'Deepseek Deepseek R1 0528 Qwen3 8B FREE',
|
|
359
|
+
value: 'deepseek/deepseek-r1-0528-qwen3-8b:free',
|
|
360
|
+
description: 'Deepseek Deepseek R1 0528 Qwen3 8B',
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
name: 'Deepseek Deepseek R1 0528 FREE',
|
|
364
|
+
value: 'deepseek/deepseek-r1-0528:free',
|
|
365
|
+
description: 'Deepseek Deepseek R1 0528',
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
name: 'MistralAI Devstral Small 2505 FREE',
|
|
369
|
+
value: 'mistralai/devstral-small-2505:free',
|
|
370
|
+
description: 'MistralAI Devstral Small 2505',
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
name: 'Google Gemma 3N E4B IT FREE',
|
|
374
|
+
value: 'google/gemma-3n-e4b-it:free',
|
|
375
|
+
description: 'Google Gemma 3N E4B IT',
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
name: 'Meta Llama Llama 3.3 8B Instruct FREE',
|
|
379
|
+
value: 'meta-llama/llama-3.3-8b-instruct:free',
|
|
380
|
+
description: 'Meta Llama Llama 3.3 8B Instruct',
|
|
381
|
+
},
|
|
134
382
|
{ name: 'Qwen Qwen3 4B FREE', value: 'qwen/qwen3-4b:free', description: 'Qwen Qwen3 4B' },
|
|
135
|
-
{
|
|
383
|
+
{
|
|
384
|
+
name: 'Qwen Qwen3 30B A3B FREE',
|
|
385
|
+
value: 'qwen/qwen3-30b-a3b:free',
|
|
386
|
+
description: 'Qwen Qwen3 30B A3B',
|
|
387
|
+
},
|
|
136
388
|
{ name: 'Qwen Qwen3 8B FREE', value: 'qwen/qwen3-8b:free', description: 'Qwen Qwen3 8B' },
|
|
137
389
|
{ name: 'Qwen Qwen3 14B FREE', value: 'qwen/qwen3-14b:free', description: 'Qwen Qwen3 14B' },
|
|
138
|
-
{
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
{
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
{
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
{
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
{
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
{
|
|
164
|
-
|
|
165
|
-
|
|
390
|
+
{
|
|
391
|
+
name: 'Qwen Qwen3 235B A22B FREE',
|
|
392
|
+
value: 'qwen/qwen3-235b-a22b:free',
|
|
393
|
+
description: 'Qwen Qwen3 235B A22B',
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
name: 'TNGTech Deepseek R1T Chimera FREE',
|
|
397
|
+
value: 'tngtech/deepseek-r1t-chimera:free',
|
|
398
|
+
description: 'TNGTech Deepseek R1T Chimera',
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
name: 'Microsoft Mai DS R1 FREE',
|
|
402
|
+
value: 'microsoft/mai-ds-r1:free',
|
|
403
|
+
description: 'Microsoft Mai DS R1',
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
name: 'Shisa AI Shisa V2 Llama3.3 70B FREE',
|
|
407
|
+
value: 'shisa-ai/shisa-v2-llama3.3-70b:free',
|
|
408
|
+
description: 'Shisa AI Shisa V2 Llama3.3 70B',
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
name: 'Arliai QWQ 32B Arliai RPR V1 FREE',
|
|
412
|
+
value: 'arliai/qwq-32b-arliai-rpr-v1:free',
|
|
413
|
+
description: 'Arliai QWQ 32B Arliai RPR V1',
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
name: 'Agentica Deepcoder 14B Preview FREE',
|
|
417
|
+
value: 'agentica-org/deepcoder-14b-preview:free',
|
|
418
|
+
description: 'Agentica Deepcoder 14B Preview',
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
name: 'Meta Llama Llama 4 Maverick FREE',
|
|
422
|
+
value: 'meta-llama/llama-4-maverick:free',
|
|
423
|
+
description: 'Meta Llama Llama 4 Maverick',
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
name: 'Meta Llama Llama 4 Scout FREE',
|
|
427
|
+
value: 'meta-llama/llama-4-scout:free',
|
|
428
|
+
description: 'Meta Llama Llama 4 Scout',
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
name: 'Qwen Qwen2.5 VL 32B Instruct FREE',
|
|
432
|
+
value: 'qwen/qwen2.5-vl-32b-instruct:free',
|
|
433
|
+
description: 'Qwen Qwen2.5 VL 32B Instruct',
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
name: 'Deepseek Deepseek Chat V3 0324 FREE',
|
|
437
|
+
value: 'deepseek/deepseek-chat-v3-0324:free',
|
|
438
|
+
description: 'Deepseek Deepseek Chat V3 0324',
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
name: 'MistralAI Mistral Small 3.1 24B Instruct FREE',
|
|
442
|
+
value: 'mistralai/mistral-small-3.1-24b-instruct:free',
|
|
443
|
+
description: 'MistralAI Mistral Small 3.1 24B Instruct',
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
name: 'Google Gemma 3 4B IT FREE',
|
|
447
|
+
value: 'google/gemma-3-4b-it:free',
|
|
448
|
+
description: 'Google Gemma 3 4B IT',
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
name: 'Google Gemma 3 12B IT FREE',
|
|
452
|
+
value: 'google/gemma-3-12b-it:free',
|
|
453
|
+
description: 'Google Gemma 3 12B IT',
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
name: 'Google Gemma 3 27B IT FREE',
|
|
457
|
+
value: 'google/gemma-3-27b-it:free',
|
|
458
|
+
description: 'Google Gemma 3 27B IT',
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
name: 'NousResearch Deephermes 3 Llama 3 8B Preview FREE',
|
|
462
|
+
value: 'nousresearch/deephermes-3-llama-3-8b-preview:free',
|
|
463
|
+
description: 'NousResearch Deephermes 3 Llama 3 8B Preview',
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
name: 'CognitiveComputations Dolphin3.0 Mistral 24B FREE',
|
|
467
|
+
value: 'cognitivecomputations/dolphin3.0-mistral-24b:free',
|
|
468
|
+
description: 'CognitiveComputations Dolphin3.0 Mistral 24B',
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
name: 'Qwen Qwen2.5 VL 72B Instruct FREE',
|
|
472
|
+
value: 'qwen/qwen2.5-vl-72b-instruct:free',
|
|
473
|
+
description: 'Qwen Qwen2.5 VL 72B Instruct',
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
name: 'MistralAI Mistral Small 24B Instruct 2501 FREE',
|
|
477
|
+
value: 'mistralai/mistral-small-24b-instruct-2501:free',
|
|
478
|
+
description: 'MistralAI Mistral Small 24B Instruct 2501',
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
name: 'Deepseek Deepseek R1 Distill Llama 70B FREE',
|
|
482
|
+
value: 'deepseek/deepseek-r1-distill-llama-70b:free',
|
|
483
|
+
description: 'Deepseek Deepseek R1 Distill Llama 70B',
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
name: 'Deepseek Deepseek R1 FREE',
|
|
487
|
+
value: 'deepseek/deepseek-r1:free',
|
|
488
|
+
description: 'Deepseek Deepseek R1',
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
name: 'Google Gemini 2.0 Flash Exp',
|
|
492
|
+
value: 'google/gemini-2.0-flash-exp:free',
|
|
493
|
+
description: 'Google Gemini 2.0 Flash Exp',
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
name: 'Meta Llama Llama 3.3 70B Instruct FREE',
|
|
497
|
+
value: 'meta-llama/llama-3.3-70b-instruct:free',
|
|
498
|
+
description: 'Meta Llama Llama 3.3 70B Instruct',
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
name: 'Qwen Qwen2.5 Coder 32B Instruct FREE',
|
|
502
|
+
value: 'qwen/qwen-2.5-coder-32b-instruct:free',
|
|
503
|
+
description: 'Qwen Qwen2.5 Coder 32B Instruct',
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
name: 'Meta Llama Llama 3.2 3B Instruct FREE',
|
|
507
|
+
value: 'meta-llama/llama-3.2-3b-instruct:free',
|
|
508
|
+
description: 'Meta Llama Llama 3.2 3B Instruct',
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
name: 'Qwen Qwen2.5 72B Instruct FREE',
|
|
512
|
+
value: 'qwen/qwen-2.5-72b-instruct:free',
|
|
513
|
+
description: 'Qwen Qwen2.5 72B Instruct',
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
name: 'MistralAI Mistral Nemo FREE',
|
|
517
|
+
value: 'mistralai/mistral-nemo:free',
|
|
518
|
+
description: 'MistralAI Mistral Nemo',
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
name: 'Google Gemma 2 9B IT FREE',
|
|
522
|
+
value: 'google/gemma-2-9b-it:free',
|
|
523
|
+
description: 'Google Gemma 2 9B IT',
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
name: 'MistralAI Mistral 7B Instruct FREE',
|
|
527
|
+
value: 'mistralai/mistral-7b-instruct:free',
|
|
528
|
+
description: 'MistralAI Mistral 7B Instruct',
|
|
529
|
+
},
|
|
166
530
|
];
|
|
167
531
|
exports.GOOGLE_GEMINI_MODELS = [
|
|
168
|
-
{
|
|
169
|
-
|
|
170
|
-
|
|
532
|
+
{
|
|
533
|
+
name: 'Gemini 2.5 Pro Preview 03-25',
|
|
534
|
+
value: 'gemini-2.5-pro-preview-03-25',
|
|
535
|
+
description: 'Preview version',
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
name: 'Gemini 2.5 Pro Preview 05-06',
|
|
539
|
+
value: 'gemini-2.5-pro-preview-05-06',
|
|
540
|
+
description: 'May preview',
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
name: 'Gemini 2.5 Pro Preview 06-05',
|
|
544
|
+
value: 'gemini-2.5-pro-preview-06-05',
|
|
545
|
+
description: 'June preview',
|
|
546
|
+
},
|
|
171
547
|
{ name: 'Gemini 2.5 Pro', value: 'gemini-2.5-pro', description: 'Most capable Gemini 2.5' },
|
|
172
|
-
{
|
|
548
|
+
{
|
|
549
|
+
name: 'Gemini 2.5 Flash Preview 05-20',
|
|
550
|
+
value: 'gemini-2.5-flash-preview-05-20',
|
|
551
|
+
description: 'Flash preview',
|
|
552
|
+
},
|
|
173
553
|
{ name: 'Gemini 2.5 Flash', value: 'gemini-2.5-flash', description: 'Fast Gemini 2.5' },
|
|
174
|
-
{
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
{
|
|
180
|
-
|
|
554
|
+
{
|
|
555
|
+
name: 'Gemini 2.5 Flash Lite Preview 06-17',
|
|
556
|
+
value: 'gemini-2.5-flash-lite-preview-06-17',
|
|
557
|
+
description: 'Lite preview',
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
name: 'Gemini 2.5 Flash Lite',
|
|
561
|
+
value: 'gemini-2.5-flash-lite',
|
|
562
|
+
description: 'Lightweight Gemini',
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
name: 'Gemini 2.5 Flash Preview 09-2025',
|
|
566
|
+
value: 'gemini-2.5-flash-preview-09-2025',
|
|
567
|
+
description: 'September preview',
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
name: 'Gemini 2.5 Flash Lite Preview 09-2025',
|
|
571
|
+
value: 'gemini-2.5-flash-lite-preview-09-2025',
|
|
572
|
+
description: 'Lite September',
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
name: 'Gemini 2.5 Computer Use Preview',
|
|
576
|
+
value: 'gemini-2.5-computer-use-preview-10-2025',
|
|
577
|
+
description: 'Computer control',
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
name: 'Gemini 2.5 Pro Preview TTS',
|
|
581
|
+
value: 'gemini-2.5-pro-preview-tts',
|
|
582
|
+
description: 'Text-to-speech',
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
name: 'Gemini 2.5 Flash Preview TTS',
|
|
586
|
+
value: 'gemini-2.5-flash-preview-tts',
|
|
587
|
+
description: 'TTS flash',
|
|
588
|
+
},
|
|
181
589
|
{ name: 'Gemini 2.0 Flash Exp', value: 'gemini-2.0-flash-exp', description: 'Experimental 2.0' },
|
|
182
590
|
{ name: 'Gemini 2.0 Flash', value: 'gemini-2.0-flash', description: 'Gemini 2.0 Flash' },
|
|
183
591
|
{ name: 'Gemini 2.0 Flash 001', value: 'gemini-2.0-flash-001', description: 'Stable 2.0 Flash' },
|
|
184
|
-
{
|
|
592
|
+
{
|
|
593
|
+
name: 'Gemini 2.0 Flash Lite 001',
|
|
594
|
+
value: 'gemini-2.0-flash-lite-001',
|
|
595
|
+
description: 'Lite 2.0',
|
|
596
|
+
},
|
|
185
597
|
{ name: 'Gemini 2.0 Flash Lite', value: 'gemini-2.0-flash-lite', description: 'Lightweight 2.0' },
|
|
186
|
-
{
|
|
187
|
-
|
|
598
|
+
{
|
|
599
|
+
name: 'Gemini 2.0 Flash Lite Preview 02-05',
|
|
600
|
+
value: 'gemini-2.0-flash-lite-preview-02-05',
|
|
601
|
+
description: 'Lite preview',
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
name: 'Gemini 2.0 Flash Lite Preview',
|
|
605
|
+
value: 'gemini-2.0-flash-lite-preview',
|
|
606
|
+
description: 'Preview lite',
|
|
607
|
+
},
|
|
188
608
|
{ name: 'Gemini 2.0 Pro Exp', value: 'gemini-2.0-pro-exp', description: 'Experimental Pro' },
|
|
189
|
-
{
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
609
|
+
{
|
|
610
|
+
name: 'Gemini 2.0 Pro Exp 02-05',
|
|
611
|
+
value: 'gemini-2.0-pro-exp-02-05',
|
|
612
|
+
description: 'Pro experimental',
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
name: 'Gemini 2.0 Flash Thinking Exp',
|
|
616
|
+
value: 'gemini-2.0-flash-thinking-exp',
|
|
617
|
+
description: 'Reasoning model',
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
name: 'Gemini 2.0 Flash Thinking Exp 01-21',
|
|
621
|
+
value: 'gemini-2.0-flash-thinking-exp-01-21',
|
|
622
|
+
description: 'Thinking Jan',
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
name: 'Gemini 2.0 Flash Thinking Exp 1219',
|
|
626
|
+
value: 'gemini-2.0-flash-thinking-exp-1219',
|
|
627
|
+
description: 'Thinking Dec',
|
|
628
|
+
},
|
|
193
629
|
{ name: 'Gemini Exp 1206', value: 'gemini-exp-1206', description: 'Experimental model' },
|
|
194
630
|
{ name: 'Gemma 3 27B IT', value: 'gemma-3-27b-it', description: 'Large Gemma' },
|
|
195
631
|
{ name: 'Gemma 3 12B IT', value: 'gemma-3-12b-it', description: 'Medium Gemma' },
|
|
@@ -198,30 +634,90 @@ exports.GOOGLE_GEMINI_MODELS = [
|
|
|
198
634
|
{ name: 'Gemma 3N E4B IT', value: 'gemma-3n-e4b-it', description: 'Nano 4B' },
|
|
199
635
|
{ name: 'Gemma 3N E2B IT', value: 'gemma-3n-e2b-it', description: 'Nano 2B' },
|
|
200
636
|
{ name: 'Gemini Flash Latest', value: 'gemini-flash-latest', description: 'Latest Flash' },
|
|
201
|
-
{
|
|
637
|
+
{
|
|
638
|
+
name: 'Gemini Flash Lite Latest',
|
|
639
|
+
value: 'gemini-flash-lite-latest',
|
|
640
|
+
description: 'Latest Lite',
|
|
641
|
+
},
|
|
202
642
|
{ name: 'Gemini Pro Latest', value: 'gemini-pro-latest', description: 'Latest Pro' },
|
|
203
|
-
{
|
|
204
|
-
|
|
643
|
+
{
|
|
644
|
+
name: 'LearnLM 2.0 Flash Experimental',
|
|
645
|
+
value: 'learnlm-2.0-flash-experimental',
|
|
646
|
+
description: 'Learning model',
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
name: 'Gemini Robotics ER 1.5 Preview',
|
|
650
|
+
value: 'gemini-robotics-er-1.5-preview',
|
|
651
|
+
description: 'Robotics model',
|
|
652
|
+
},
|
|
205
653
|
{ name: 'AQA', value: 'aqa', description: 'Answer quality assessment' },
|
|
206
654
|
];
|
|
207
655
|
exports.GOOGLE_EMBEDDING_MODELS = [
|
|
208
|
-
{
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
{
|
|
656
|
+
{
|
|
657
|
+
name: 'Text Embedding 004',
|
|
658
|
+
value: 'text-embedding-004',
|
|
659
|
+
description: 'Latest text embedding (768 dimensions)',
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
name: 'Embedding 001',
|
|
663
|
+
value: 'embedding-001',
|
|
664
|
+
description: 'General embedding (3072 dimensions)',
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
name: 'Embedding Gecko 001',
|
|
668
|
+
value: 'embedding-gecko-001',
|
|
669
|
+
description: 'Gecko embedding model',
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
name: 'Gemini Embedding Exp 03-07',
|
|
673
|
+
value: 'gemini-embedding-exp-03-07',
|
|
674
|
+
description: 'Experimental embedding',
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
name: 'Gemini Embedding Exp',
|
|
678
|
+
value: 'gemini-embedding-exp',
|
|
679
|
+
description: 'Latest experimental',
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
name: 'Gemini Embedding 001',
|
|
683
|
+
value: 'gemini-embedding-001',
|
|
684
|
+
description: 'Stable Gemini embedding',
|
|
685
|
+
},
|
|
214
686
|
];
|
|
215
687
|
exports.GOOGLE_IMAGE_MODELS = [
|
|
216
|
-
{
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
{
|
|
688
|
+
{
|
|
689
|
+
name: 'Imagen 3.0 Generate 002',
|
|
690
|
+
value: 'imagen-3.0-generate-002',
|
|
691
|
+
description: 'Latest Imagen 3',
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
name: 'Imagen 4.0 Generate Preview',
|
|
695
|
+
value: 'imagen-4.0-generate-preview-06-06',
|
|
696
|
+
description: 'Imagen 4 preview',
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
name: 'Imagen 4.0 Ultra Generate Preview',
|
|
700
|
+
value: 'imagen-4.0-ultra-generate-preview-06-06',
|
|
701
|
+
description: 'Ultra quality',
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
name: 'Imagen 4.0 Generate 001',
|
|
705
|
+
value: 'imagen-4.0-generate-001',
|
|
706
|
+
description: 'Stable Imagen 4',
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
name: 'Gemini 2.5 Flash Image Preview',
|
|
710
|
+
value: 'gemini-2.5-flash-image-preview',
|
|
711
|
+
description: 'Image support preview',
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
name: 'Gemini 2.5 Flash Image',
|
|
715
|
+
value: 'gemini-2.5-flash-image',
|
|
716
|
+
description: 'Image generation',
|
|
717
|
+
},
|
|
222
718
|
];
|
|
223
719
|
exports.GOOGLE_TRANSCRIPTION_MODELS = [
|
|
224
|
-
{ name: 'Chirp', value: 'chirp', description:
|
|
720
|
+
{ name: 'Chirp', value: 'chirp', description: "Google's universal speech model" },
|
|
225
721
|
];
|
|
226
722
|
exports.OPENAI_CHAT_MODELS = [
|
|
227
723
|
{ name: 'GPT-4.1', value: 'gpt-4.1', description: 'Latest GPT-4.1 model' },
|
|
@@ -236,9 +732,21 @@ exports.OPENAI_CHAT_MODELS = [
|
|
|
236
732
|
{ name: 'GPT-3.5 Turbo 16k', value: 'gpt-3.5-turbo-16k', description: 'Extended context' },
|
|
237
733
|
];
|
|
238
734
|
exports.OPENAI_EMBEDDING_MODELS = [
|
|
239
|
-
{
|
|
240
|
-
|
|
241
|
-
|
|
735
|
+
{
|
|
736
|
+
name: 'Text Embedding 3 Large',
|
|
737
|
+
value: 'text-embedding-3-large',
|
|
738
|
+
description: 'Most capable embedding (3072 dimensions)',
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
name: 'Text Embedding 3 Small',
|
|
742
|
+
value: 'text-embedding-3-small',
|
|
743
|
+
description: 'Efficient embedding (1536 dimensions)',
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
name: 'Text Embedding Ada 002',
|
|
747
|
+
value: 'text-embedding-ada-002',
|
|
748
|
+
description: 'Legacy embedding (1536 dimensions)',
|
|
749
|
+
},
|
|
242
750
|
];
|
|
243
751
|
exports.OPENAI_IMAGE_MODELS = [
|
|
244
752
|
{ name: 'DALL-E 3', value: 'dall-e-3', description: 'Latest DALL-E model' },
|
|
@@ -275,12 +783,20 @@ exports.GOOGLE_VOICE_MODELS = [
|
|
|
275
783
|
exports.OPENAI_VOICE_MODELS = [
|
|
276
784
|
{ name: 'Alloy', value: 'alloy', description: 'Balanced and clear' },
|
|
277
785
|
{ name: 'Echo', value: 'echo', description: 'Male voice with a warm, rich tone' },
|
|
278
|
-
{
|
|
786
|
+
{
|
|
787
|
+
name: 'Fable',
|
|
788
|
+
value: 'fable',
|
|
789
|
+
description: 'British-accented voice with a warm, storytelling quality',
|
|
790
|
+
},
|
|
279
791
|
{ name: 'Onyx', value: 'onyx', description: 'Deep, resonant male voice' },
|
|
280
792
|
{ name: 'Nova', value: 'nova', description: 'Youthful, energetic female voice' },
|
|
281
793
|
{ name: 'Shimmer', value: 'shimmer', description: 'Warm, sophisticated female voice' },
|
|
282
794
|
];
|
|
283
795
|
exports.LETTA_MODELS = [
|
|
284
|
-
{
|
|
796
|
+
{
|
|
797
|
+
name: 'Agent Model (configured in Letta)',
|
|
798
|
+
value: 'agent-model',
|
|
799
|
+
description: 'Model configuration is managed through your Letta agent settings',
|
|
800
|
+
},
|
|
285
801
|
];
|
|
286
802
|
//# sourceMappingURL=model-lists.js.map
|