@langchain/google-genai 1.0.0 → 1.0.2
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/CHANGELOG.md +12 -0
- package/dist/chat_models.cjs +24 -3
- package/dist/chat_models.cjs.map +1 -1
- package/dist/chat_models.d.cts +19 -0
- package/dist/chat_models.d.cts.map +1 -1
- package/dist/chat_models.d.ts +19 -0
- package/dist/chat_models.d.ts.map +1 -1
- package/dist/chat_models.js +24 -3
- package/dist/chat_models.js.map +1 -1
- package/dist/profiles.cjs +345 -0
- package/dist/profiles.cjs.map +1 -0
- package/dist/profiles.js +344 -0
- package/dist/profiles.js.map +1 -0
- package/dist/utils/common.cjs +57 -21
- package/dist/utils/common.cjs.map +1 -1
- package/dist/utils/common.js +57 -21
- package/dist/utils/common.js.map +1 -1
- package/package.json +9 -6
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
|
|
2
|
+
//#region src/profiles.ts
|
|
3
|
+
const PROFILES = {
|
|
4
|
+
"gemini-embedding-001": {
|
|
5
|
+
maxInputTokens: 2048,
|
|
6
|
+
imageInputs: false,
|
|
7
|
+
audioInputs: false,
|
|
8
|
+
pdfInputs: false,
|
|
9
|
+
videoInputs: false,
|
|
10
|
+
maxOutputTokens: 3072,
|
|
11
|
+
reasoningOutput: false,
|
|
12
|
+
imageOutputs: false,
|
|
13
|
+
audioOutputs: false,
|
|
14
|
+
videoOutputs: false,
|
|
15
|
+
toolCalling: false,
|
|
16
|
+
structuredOutput: false
|
|
17
|
+
},
|
|
18
|
+
"gemini-2.5-flash-image": {
|
|
19
|
+
maxInputTokens: 32768,
|
|
20
|
+
imageInputs: true,
|
|
21
|
+
audioInputs: false,
|
|
22
|
+
pdfInputs: false,
|
|
23
|
+
videoInputs: false,
|
|
24
|
+
maxOutputTokens: 32768,
|
|
25
|
+
reasoningOutput: true,
|
|
26
|
+
imageOutputs: true,
|
|
27
|
+
audioOutputs: false,
|
|
28
|
+
videoOutputs: false,
|
|
29
|
+
toolCalling: false,
|
|
30
|
+
structuredOutput: false
|
|
31
|
+
},
|
|
32
|
+
"gemini-2.5-flash-preview-05-20": {
|
|
33
|
+
maxInputTokens: 1048576,
|
|
34
|
+
imageInputs: true,
|
|
35
|
+
audioInputs: true,
|
|
36
|
+
pdfInputs: true,
|
|
37
|
+
videoInputs: true,
|
|
38
|
+
maxOutputTokens: 65536,
|
|
39
|
+
reasoningOutput: true,
|
|
40
|
+
imageOutputs: false,
|
|
41
|
+
audioOutputs: false,
|
|
42
|
+
videoOutputs: false,
|
|
43
|
+
toolCalling: true,
|
|
44
|
+
structuredOutput: true
|
|
45
|
+
},
|
|
46
|
+
"gemini-flash-lite-latest": {
|
|
47
|
+
maxInputTokens: 1048576,
|
|
48
|
+
imageInputs: true,
|
|
49
|
+
audioInputs: true,
|
|
50
|
+
pdfInputs: true,
|
|
51
|
+
videoInputs: true,
|
|
52
|
+
maxOutputTokens: 65536,
|
|
53
|
+
reasoningOutput: true,
|
|
54
|
+
imageOutputs: false,
|
|
55
|
+
audioOutputs: false,
|
|
56
|
+
videoOutputs: false,
|
|
57
|
+
toolCalling: true,
|
|
58
|
+
structuredOutput: true
|
|
59
|
+
},
|
|
60
|
+
"gemini-2.5-flash": {
|
|
61
|
+
maxInputTokens: 1048576,
|
|
62
|
+
imageInputs: true,
|
|
63
|
+
audioInputs: true,
|
|
64
|
+
pdfInputs: true,
|
|
65
|
+
videoInputs: true,
|
|
66
|
+
maxOutputTokens: 65536,
|
|
67
|
+
reasoningOutput: true,
|
|
68
|
+
imageOutputs: false,
|
|
69
|
+
audioOutputs: false,
|
|
70
|
+
videoOutputs: false,
|
|
71
|
+
toolCalling: true,
|
|
72
|
+
structuredOutput: true
|
|
73
|
+
},
|
|
74
|
+
"gemini-flash-latest": {
|
|
75
|
+
maxInputTokens: 1048576,
|
|
76
|
+
imageInputs: true,
|
|
77
|
+
audioInputs: true,
|
|
78
|
+
pdfInputs: true,
|
|
79
|
+
videoInputs: true,
|
|
80
|
+
maxOutputTokens: 65536,
|
|
81
|
+
reasoningOutput: true,
|
|
82
|
+
imageOutputs: false,
|
|
83
|
+
audioOutputs: false,
|
|
84
|
+
videoOutputs: false,
|
|
85
|
+
toolCalling: true,
|
|
86
|
+
structuredOutput: true
|
|
87
|
+
},
|
|
88
|
+
"gemini-2.5-pro-preview-05-06": {
|
|
89
|
+
maxInputTokens: 1048576,
|
|
90
|
+
imageInputs: true,
|
|
91
|
+
audioInputs: true,
|
|
92
|
+
pdfInputs: true,
|
|
93
|
+
videoInputs: true,
|
|
94
|
+
maxOutputTokens: 65536,
|
|
95
|
+
reasoningOutput: true,
|
|
96
|
+
imageOutputs: false,
|
|
97
|
+
audioOutputs: false,
|
|
98
|
+
videoOutputs: false,
|
|
99
|
+
toolCalling: true,
|
|
100
|
+
structuredOutput: true
|
|
101
|
+
},
|
|
102
|
+
"gemini-2.5-flash-preview-tts": {
|
|
103
|
+
maxInputTokens: 8e3,
|
|
104
|
+
imageInputs: false,
|
|
105
|
+
audioInputs: false,
|
|
106
|
+
pdfInputs: false,
|
|
107
|
+
videoInputs: false,
|
|
108
|
+
maxOutputTokens: 16e3,
|
|
109
|
+
reasoningOutput: false,
|
|
110
|
+
imageOutputs: false,
|
|
111
|
+
audioOutputs: true,
|
|
112
|
+
videoOutputs: false,
|
|
113
|
+
toolCalling: false,
|
|
114
|
+
structuredOutput: false
|
|
115
|
+
},
|
|
116
|
+
"gemini-2.0-flash-lite": {
|
|
117
|
+
maxInputTokens: 1048576,
|
|
118
|
+
imageInputs: true,
|
|
119
|
+
audioInputs: true,
|
|
120
|
+
pdfInputs: true,
|
|
121
|
+
videoInputs: true,
|
|
122
|
+
maxOutputTokens: 8192,
|
|
123
|
+
reasoningOutput: false,
|
|
124
|
+
imageOutputs: false,
|
|
125
|
+
audioOutputs: false,
|
|
126
|
+
videoOutputs: false,
|
|
127
|
+
toolCalling: true,
|
|
128
|
+
structuredOutput: true
|
|
129
|
+
},
|
|
130
|
+
"gemini-live-2.5-flash-preview-native-audio": {
|
|
131
|
+
maxInputTokens: 131072,
|
|
132
|
+
imageInputs: false,
|
|
133
|
+
audioInputs: true,
|
|
134
|
+
pdfInputs: false,
|
|
135
|
+
videoInputs: true,
|
|
136
|
+
maxOutputTokens: 65536,
|
|
137
|
+
reasoningOutput: true,
|
|
138
|
+
imageOutputs: false,
|
|
139
|
+
audioOutputs: true,
|
|
140
|
+
videoOutputs: false,
|
|
141
|
+
toolCalling: true,
|
|
142
|
+
structuredOutput: false
|
|
143
|
+
},
|
|
144
|
+
"gemini-2.0-flash": {
|
|
145
|
+
maxInputTokens: 1048576,
|
|
146
|
+
imageInputs: true,
|
|
147
|
+
audioInputs: true,
|
|
148
|
+
pdfInputs: true,
|
|
149
|
+
videoInputs: true,
|
|
150
|
+
maxOutputTokens: 8192,
|
|
151
|
+
reasoningOutput: false,
|
|
152
|
+
imageOutputs: false,
|
|
153
|
+
audioOutputs: false,
|
|
154
|
+
videoOutputs: false,
|
|
155
|
+
toolCalling: true,
|
|
156
|
+
structuredOutput: true
|
|
157
|
+
},
|
|
158
|
+
"gemini-2.5-flash-lite": {
|
|
159
|
+
maxInputTokens: 1048576,
|
|
160
|
+
imageInputs: true,
|
|
161
|
+
audioInputs: true,
|
|
162
|
+
pdfInputs: true,
|
|
163
|
+
videoInputs: true,
|
|
164
|
+
maxOutputTokens: 65536,
|
|
165
|
+
reasoningOutput: true,
|
|
166
|
+
imageOutputs: false,
|
|
167
|
+
audioOutputs: false,
|
|
168
|
+
videoOutputs: false,
|
|
169
|
+
toolCalling: true,
|
|
170
|
+
structuredOutput: true
|
|
171
|
+
},
|
|
172
|
+
"gemini-2.5-pro-preview-06-05": {
|
|
173
|
+
maxInputTokens: 1048576,
|
|
174
|
+
imageInputs: true,
|
|
175
|
+
audioInputs: true,
|
|
176
|
+
pdfInputs: true,
|
|
177
|
+
videoInputs: true,
|
|
178
|
+
maxOutputTokens: 65536,
|
|
179
|
+
reasoningOutput: true,
|
|
180
|
+
imageOutputs: false,
|
|
181
|
+
audioOutputs: false,
|
|
182
|
+
videoOutputs: false,
|
|
183
|
+
toolCalling: true,
|
|
184
|
+
structuredOutput: true
|
|
185
|
+
},
|
|
186
|
+
"gemini-live-2.5-flash": {
|
|
187
|
+
maxInputTokens: 128e3,
|
|
188
|
+
imageInputs: true,
|
|
189
|
+
audioInputs: true,
|
|
190
|
+
pdfInputs: false,
|
|
191
|
+
videoInputs: true,
|
|
192
|
+
maxOutputTokens: 8e3,
|
|
193
|
+
reasoningOutput: true,
|
|
194
|
+
imageOutputs: false,
|
|
195
|
+
audioOutputs: true,
|
|
196
|
+
videoOutputs: false,
|
|
197
|
+
toolCalling: true,
|
|
198
|
+
structuredOutput: false
|
|
199
|
+
},
|
|
200
|
+
"gemini-2.5-flash-lite-preview-06-17": {
|
|
201
|
+
maxInputTokens: 1048576,
|
|
202
|
+
imageInputs: true,
|
|
203
|
+
audioInputs: true,
|
|
204
|
+
pdfInputs: true,
|
|
205
|
+
videoInputs: true,
|
|
206
|
+
maxOutputTokens: 65536,
|
|
207
|
+
reasoningOutput: true,
|
|
208
|
+
imageOutputs: false,
|
|
209
|
+
audioOutputs: false,
|
|
210
|
+
videoOutputs: false,
|
|
211
|
+
toolCalling: true,
|
|
212
|
+
structuredOutput: false
|
|
213
|
+
},
|
|
214
|
+
"gemini-2.5-flash-image-preview": {
|
|
215
|
+
maxInputTokens: 32768,
|
|
216
|
+
imageInputs: true,
|
|
217
|
+
audioInputs: false,
|
|
218
|
+
pdfInputs: false,
|
|
219
|
+
videoInputs: false,
|
|
220
|
+
maxOutputTokens: 32768,
|
|
221
|
+
reasoningOutput: true,
|
|
222
|
+
imageOutputs: true,
|
|
223
|
+
audioOutputs: false,
|
|
224
|
+
videoOutputs: false,
|
|
225
|
+
toolCalling: false,
|
|
226
|
+
structuredOutput: false
|
|
227
|
+
},
|
|
228
|
+
"gemini-2.5-flash-preview-09-2025": {
|
|
229
|
+
maxInputTokens: 1048576,
|
|
230
|
+
imageInputs: true,
|
|
231
|
+
audioInputs: true,
|
|
232
|
+
pdfInputs: true,
|
|
233
|
+
videoInputs: true,
|
|
234
|
+
maxOutputTokens: 65536,
|
|
235
|
+
reasoningOutput: true,
|
|
236
|
+
imageOutputs: false,
|
|
237
|
+
audioOutputs: false,
|
|
238
|
+
videoOutputs: false,
|
|
239
|
+
toolCalling: true,
|
|
240
|
+
structuredOutput: true
|
|
241
|
+
},
|
|
242
|
+
"gemini-2.5-flash-preview-04-17": {
|
|
243
|
+
maxInputTokens: 1048576,
|
|
244
|
+
imageInputs: true,
|
|
245
|
+
audioInputs: true,
|
|
246
|
+
pdfInputs: true,
|
|
247
|
+
videoInputs: true,
|
|
248
|
+
maxOutputTokens: 65536,
|
|
249
|
+
reasoningOutput: true,
|
|
250
|
+
imageOutputs: false,
|
|
251
|
+
audioOutputs: false,
|
|
252
|
+
videoOutputs: false,
|
|
253
|
+
toolCalling: true,
|
|
254
|
+
structuredOutput: false
|
|
255
|
+
},
|
|
256
|
+
"gemini-2.5-pro-preview-tts": {
|
|
257
|
+
maxInputTokens: 8e3,
|
|
258
|
+
imageInputs: false,
|
|
259
|
+
audioInputs: false,
|
|
260
|
+
pdfInputs: false,
|
|
261
|
+
videoInputs: false,
|
|
262
|
+
maxOutputTokens: 16e3,
|
|
263
|
+
reasoningOutput: false,
|
|
264
|
+
imageOutputs: false,
|
|
265
|
+
audioOutputs: true,
|
|
266
|
+
videoOutputs: false,
|
|
267
|
+
toolCalling: false,
|
|
268
|
+
structuredOutput: false
|
|
269
|
+
},
|
|
270
|
+
"gemini-2.5-pro": {
|
|
271
|
+
maxInputTokens: 1048576,
|
|
272
|
+
imageInputs: true,
|
|
273
|
+
audioInputs: true,
|
|
274
|
+
pdfInputs: true,
|
|
275
|
+
videoInputs: true,
|
|
276
|
+
maxOutputTokens: 65536,
|
|
277
|
+
reasoningOutput: true,
|
|
278
|
+
imageOutputs: false,
|
|
279
|
+
audioOutputs: false,
|
|
280
|
+
videoOutputs: false,
|
|
281
|
+
toolCalling: true,
|
|
282
|
+
structuredOutput: true
|
|
283
|
+
},
|
|
284
|
+
"gemini-1.5-flash": {
|
|
285
|
+
maxInputTokens: 1e6,
|
|
286
|
+
imageInputs: true,
|
|
287
|
+
audioInputs: true,
|
|
288
|
+
pdfInputs: false,
|
|
289
|
+
videoInputs: true,
|
|
290
|
+
maxOutputTokens: 8192,
|
|
291
|
+
reasoningOutput: false,
|
|
292
|
+
imageOutputs: false,
|
|
293
|
+
audioOutputs: false,
|
|
294
|
+
videoOutputs: false,
|
|
295
|
+
toolCalling: true,
|
|
296
|
+
structuredOutput: false
|
|
297
|
+
},
|
|
298
|
+
"gemini-1.5-flash-8b": {
|
|
299
|
+
maxInputTokens: 1e6,
|
|
300
|
+
imageInputs: true,
|
|
301
|
+
audioInputs: true,
|
|
302
|
+
pdfInputs: false,
|
|
303
|
+
videoInputs: true,
|
|
304
|
+
maxOutputTokens: 8192,
|
|
305
|
+
reasoningOutput: false,
|
|
306
|
+
imageOutputs: false,
|
|
307
|
+
audioOutputs: false,
|
|
308
|
+
videoOutputs: false,
|
|
309
|
+
toolCalling: true,
|
|
310
|
+
structuredOutput: false
|
|
311
|
+
},
|
|
312
|
+
"gemini-2.5-flash-lite-preview-09-2025": {
|
|
313
|
+
maxInputTokens: 1048576,
|
|
314
|
+
imageInputs: true,
|
|
315
|
+
audioInputs: true,
|
|
316
|
+
pdfInputs: true,
|
|
317
|
+
videoInputs: true,
|
|
318
|
+
maxOutputTokens: 65536,
|
|
319
|
+
reasoningOutput: true,
|
|
320
|
+
imageOutputs: false,
|
|
321
|
+
audioOutputs: false,
|
|
322
|
+
videoOutputs: false,
|
|
323
|
+
toolCalling: true,
|
|
324
|
+
structuredOutput: true
|
|
325
|
+
},
|
|
326
|
+
"gemini-1.5-pro": {
|
|
327
|
+
maxInputTokens: 1e6,
|
|
328
|
+
imageInputs: true,
|
|
329
|
+
audioInputs: true,
|
|
330
|
+
pdfInputs: false,
|
|
331
|
+
videoInputs: true,
|
|
332
|
+
maxOutputTokens: 8192,
|
|
333
|
+
reasoningOutput: false,
|
|
334
|
+
imageOutputs: false,
|
|
335
|
+
audioOutputs: false,
|
|
336
|
+
videoOutputs: false,
|
|
337
|
+
toolCalling: true,
|
|
338
|
+
structuredOutput: false
|
|
339
|
+
}
|
|
340
|
+
};
|
|
341
|
+
var profiles_default = PROFILES;
|
|
342
|
+
|
|
343
|
+
//#endregion
|
|
344
|
+
exports.default = profiles_default;
|
|
345
|
+
//# sourceMappingURL=profiles.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profiles.cjs","names":["PROFILES: Record<string, ModelProfile>"],"sources":["../src/profiles.ts"],"sourcesContent":["/**\n * This file was automatically generated by an automated script. Do not edit manually.\n */\nimport type { ModelProfile } from \"@langchain/core/language_models/profile\";\nconst PROFILES: Record<string, ModelProfile> = {\n \"gemini-embedding-001\": {\n maxInputTokens: 2048,\n imageInputs: false,\n audioInputs: false,\n pdfInputs: false,\n videoInputs: false,\n maxOutputTokens: 3072,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: false,\n structuredOutput: false,\n },\n \"gemini-2.5-flash-image\": {\n maxInputTokens: 32768,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: false,\n videoInputs: false,\n maxOutputTokens: 32768,\n reasoningOutput: true,\n imageOutputs: true,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: false,\n structuredOutput: false,\n },\n \"gemini-2.5-flash-preview-05-20\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-flash-lite-latest\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-2.5-flash\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-flash-latest\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-2.5-pro-preview-05-06\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-2.5-flash-preview-tts\": {\n maxInputTokens: 8000,\n imageInputs: false,\n audioInputs: false,\n pdfInputs: false,\n videoInputs: false,\n maxOutputTokens: 16000,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: true,\n videoOutputs: false,\n toolCalling: false,\n structuredOutput: false,\n },\n \"gemini-2.0-flash-lite\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-live-2.5-flash-preview-native-audio\": {\n maxInputTokens: 131072,\n imageInputs: false,\n audioInputs: true,\n pdfInputs: false,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: true,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n },\n \"gemini-2.0-flash\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-2.5-flash-lite\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-2.5-pro-preview-06-05\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-live-2.5-flash\": {\n maxInputTokens: 128000,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: false,\n videoInputs: true,\n maxOutputTokens: 8000,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: true,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n },\n \"gemini-2.5-flash-lite-preview-06-17\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n },\n \"gemini-2.5-flash-image-preview\": {\n maxInputTokens: 32768,\n imageInputs: true,\n audioInputs: false,\n pdfInputs: false,\n videoInputs: false,\n maxOutputTokens: 32768,\n reasoningOutput: true,\n imageOutputs: true,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: false,\n structuredOutput: false,\n },\n \"gemini-2.5-flash-preview-09-2025\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-2.5-flash-preview-04-17\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n },\n \"gemini-2.5-pro-preview-tts\": {\n maxInputTokens: 8000,\n imageInputs: false,\n audioInputs: false,\n pdfInputs: false,\n videoInputs: false,\n maxOutputTokens: 16000,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: true,\n videoOutputs: false,\n toolCalling: false,\n structuredOutput: false,\n },\n \"gemini-2.5-pro\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-1.5-flash\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: false,\n videoInputs: true,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n },\n \"gemini-1.5-flash-8b\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: false,\n videoInputs: true,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n },\n \"gemini-2.5-flash-lite-preview-09-2025\": {\n maxInputTokens: 1048576,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: true,\n videoInputs: true,\n maxOutputTokens: 65536,\n reasoningOutput: true,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: true,\n },\n \"gemini-1.5-pro\": {\n maxInputTokens: 1000000,\n imageInputs: true,\n audioInputs: true,\n pdfInputs: false,\n videoInputs: true,\n maxOutputTokens: 8192,\n reasoningOutput: false,\n imageOutputs: false,\n audioOutputs: false,\n videoOutputs: false,\n toolCalling: true,\n structuredOutput: false,\n },\n};\nexport default PROFILES;\n"],"mappings":";;AAIA,MAAMA,WAAyC;CAC7C,wBAAwB;EACtB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,0BAA0B;EACxB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,kCAAkC;EAChC,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,4BAA4B;EAC1B,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,oBAAoB;EAClB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,uBAAuB;EACrB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,gCAAgC;EAC9B,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,gCAAgC;EAC9B,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,yBAAyB;EACvB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,8CAA8C;EAC5C,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,oBAAoB;EAClB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,yBAAyB;EACvB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,gCAAgC;EAC9B,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,yBAAyB;EACvB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,uCAAuC;EACrC,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,kCAAkC;EAChC,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,oCAAoC;EAClC,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,kCAAkC;EAChC,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,8BAA8B;EAC5B,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,kBAAkB;EAChB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,oBAAoB;EAClB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,uBAAuB;EACrB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,yCAAyC;EACvC,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;CACD,kBAAkB;EAChB,gBAAgB;EAChB,aAAa;EACb,aAAa;EACb,WAAW;EACX,aAAa;EACb,iBAAiB;EACjB,iBAAiB;EACjB,cAAc;EACd,cAAc;EACd,cAAc;EACd,aAAa;EACb,kBAAkB;CACnB;AACF;AACD,uBAAe"}
|
package/dist/profiles.js
ADDED
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
//#region src/profiles.ts
|
|
2
|
+
const PROFILES = {
|
|
3
|
+
"gemini-embedding-001": {
|
|
4
|
+
maxInputTokens: 2048,
|
|
5
|
+
imageInputs: false,
|
|
6
|
+
audioInputs: false,
|
|
7
|
+
pdfInputs: false,
|
|
8
|
+
videoInputs: false,
|
|
9
|
+
maxOutputTokens: 3072,
|
|
10
|
+
reasoningOutput: false,
|
|
11
|
+
imageOutputs: false,
|
|
12
|
+
audioOutputs: false,
|
|
13
|
+
videoOutputs: false,
|
|
14
|
+
toolCalling: false,
|
|
15
|
+
structuredOutput: false
|
|
16
|
+
},
|
|
17
|
+
"gemini-2.5-flash-image": {
|
|
18
|
+
maxInputTokens: 32768,
|
|
19
|
+
imageInputs: true,
|
|
20
|
+
audioInputs: false,
|
|
21
|
+
pdfInputs: false,
|
|
22
|
+
videoInputs: false,
|
|
23
|
+
maxOutputTokens: 32768,
|
|
24
|
+
reasoningOutput: true,
|
|
25
|
+
imageOutputs: true,
|
|
26
|
+
audioOutputs: false,
|
|
27
|
+
videoOutputs: false,
|
|
28
|
+
toolCalling: false,
|
|
29
|
+
structuredOutput: false
|
|
30
|
+
},
|
|
31
|
+
"gemini-2.5-flash-preview-05-20": {
|
|
32
|
+
maxInputTokens: 1048576,
|
|
33
|
+
imageInputs: true,
|
|
34
|
+
audioInputs: true,
|
|
35
|
+
pdfInputs: true,
|
|
36
|
+
videoInputs: true,
|
|
37
|
+
maxOutputTokens: 65536,
|
|
38
|
+
reasoningOutput: true,
|
|
39
|
+
imageOutputs: false,
|
|
40
|
+
audioOutputs: false,
|
|
41
|
+
videoOutputs: false,
|
|
42
|
+
toolCalling: true,
|
|
43
|
+
structuredOutput: true
|
|
44
|
+
},
|
|
45
|
+
"gemini-flash-lite-latest": {
|
|
46
|
+
maxInputTokens: 1048576,
|
|
47
|
+
imageInputs: true,
|
|
48
|
+
audioInputs: true,
|
|
49
|
+
pdfInputs: true,
|
|
50
|
+
videoInputs: true,
|
|
51
|
+
maxOutputTokens: 65536,
|
|
52
|
+
reasoningOutput: true,
|
|
53
|
+
imageOutputs: false,
|
|
54
|
+
audioOutputs: false,
|
|
55
|
+
videoOutputs: false,
|
|
56
|
+
toolCalling: true,
|
|
57
|
+
structuredOutput: true
|
|
58
|
+
},
|
|
59
|
+
"gemini-2.5-flash": {
|
|
60
|
+
maxInputTokens: 1048576,
|
|
61
|
+
imageInputs: true,
|
|
62
|
+
audioInputs: true,
|
|
63
|
+
pdfInputs: true,
|
|
64
|
+
videoInputs: true,
|
|
65
|
+
maxOutputTokens: 65536,
|
|
66
|
+
reasoningOutput: true,
|
|
67
|
+
imageOutputs: false,
|
|
68
|
+
audioOutputs: false,
|
|
69
|
+
videoOutputs: false,
|
|
70
|
+
toolCalling: true,
|
|
71
|
+
structuredOutput: true
|
|
72
|
+
},
|
|
73
|
+
"gemini-flash-latest": {
|
|
74
|
+
maxInputTokens: 1048576,
|
|
75
|
+
imageInputs: true,
|
|
76
|
+
audioInputs: true,
|
|
77
|
+
pdfInputs: true,
|
|
78
|
+
videoInputs: true,
|
|
79
|
+
maxOutputTokens: 65536,
|
|
80
|
+
reasoningOutput: true,
|
|
81
|
+
imageOutputs: false,
|
|
82
|
+
audioOutputs: false,
|
|
83
|
+
videoOutputs: false,
|
|
84
|
+
toolCalling: true,
|
|
85
|
+
structuredOutput: true
|
|
86
|
+
},
|
|
87
|
+
"gemini-2.5-pro-preview-05-06": {
|
|
88
|
+
maxInputTokens: 1048576,
|
|
89
|
+
imageInputs: true,
|
|
90
|
+
audioInputs: true,
|
|
91
|
+
pdfInputs: true,
|
|
92
|
+
videoInputs: true,
|
|
93
|
+
maxOutputTokens: 65536,
|
|
94
|
+
reasoningOutput: true,
|
|
95
|
+
imageOutputs: false,
|
|
96
|
+
audioOutputs: false,
|
|
97
|
+
videoOutputs: false,
|
|
98
|
+
toolCalling: true,
|
|
99
|
+
structuredOutput: true
|
|
100
|
+
},
|
|
101
|
+
"gemini-2.5-flash-preview-tts": {
|
|
102
|
+
maxInputTokens: 8e3,
|
|
103
|
+
imageInputs: false,
|
|
104
|
+
audioInputs: false,
|
|
105
|
+
pdfInputs: false,
|
|
106
|
+
videoInputs: false,
|
|
107
|
+
maxOutputTokens: 16e3,
|
|
108
|
+
reasoningOutput: false,
|
|
109
|
+
imageOutputs: false,
|
|
110
|
+
audioOutputs: true,
|
|
111
|
+
videoOutputs: false,
|
|
112
|
+
toolCalling: false,
|
|
113
|
+
structuredOutput: false
|
|
114
|
+
},
|
|
115
|
+
"gemini-2.0-flash-lite": {
|
|
116
|
+
maxInputTokens: 1048576,
|
|
117
|
+
imageInputs: true,
|
|
118
|
+
audioInputs: true,
|
|
119
|
+
pdfInputs: true,
|
|
120
|
+
videoInputs: true,
|
|
121
|
+
maxOutputTokens: 8192,
|
|
122
|
+
reasoningOutput: false,
|
|
123
|
+
imageOutputs: false,
|
|
124
|
+
audioOutputs: false,
|
|
125
|
+
videoOutputs: false,
|
|
126
|
+
toolCalling: true,
|
|
127
|
+
structuredOutput: true
|
|
128
|
+
},
|
|
129
|
+
"gemini-live-2.5-flash-preview-native-audio": {
|
|
130
|
+
maxInputTokens: 131072,
|
|
131
|
+
imageInputs: false,
|
|
132
|
+
audioInputs: true,
|
|
133
|
+
pdfInputs: false,
|
|
134
|
+
videoInputs: true,
|
|
135
|
+
maxOutputTokens: 65536,
|
|
136
|
+
reasoningOutput: true,
|
|
137
|
+
imageOutputs: false,
|
|
138
|
+
audioOutputs: true,
|
|
139
|
+
videoOutputs: false,
|
|
140
|
+
toolCalling: true,
|
|
141
|
+
structuredOutput: false
|
|
142
|
+
},
|
|
143
|
+
"gemini-2.0-flash": {
|
|
144
|
+
maxInputTokens: 1048576,
|
|
145
|
+
imageInputs: true,
|
|
146
|
+
audioInputs: true,
|
|
147
|
+
pdfInputs: true,
|
|
148
|
+
videoInputs: true,
|
|
149
|
+
maxOutputTokens: 8192,
|
|
150
|
+
reasoningOutput: false,
|
|
151
|
+
imageOutputs: false,
|
|
152
|
+
audioOutputs: false,
|
|
153
|
+
videoOutputs: false,
|
|
154
|
+
toolCalling: true,
|
|
155
|
+
structuredOutput: true
|
|
156
|
+
},
|
|
157
|
+
"gemini-2.5-flash-lite": {
|
|
158
|
+
maxInputTokens: 1048576,
|
|
159
|
+
imageInputs: true,
|
|
160
|
+
audioInputs: true,
|
|
161
|
+
pdfInputs: true,
|
|
162
|
+
videoInputs: true,
|
|
163
|
+
maxOutputTokens: 65536,
|
|
164
|
+
reasoningOutput: true,
|
|
165
|
+
imageOutputs: false,
|
|
166
|
+
audioOutputs: false,
|
|
167
|
+
videoOutputs: false,
|
|
168
|
+
toolCalling: true,
|
|
169
|
+
structuredOutput: true
|
|
170
|
+
},
|
|
171
|
+
"gemini-2.5-pro-preview-06-05": {
|
|
172
|
+
maxInputTokens: 1048576,
|
|
173
|
+
imageInputs: true,
|
|
174
|
+
audioInputs: true,
|
|
175
|
+
pdfInputs: true,
|
|
176
|
+
videoInputs: true,
|
|
177
|
+
maxOutputTokens: 65536,
|
|
178
|
+
reasoningOutput: true,
|
|
179
|
+
imageOutputs: false,
|
|
180
|
+
audioOutputs: false,
|
|
181
|
+
videoOutputs: false,
|
|
182
|
+
toolCalling: true,
|
|
183
|
+
structuredOutput: true
|
|
184
|
+
},
|
|
185
|
+
"gemini-live-2.5-flash": {
|
|
186
|
+
maxInputTokens: 128e3,
|
|
187
|
+
imageInputs: true,
|
|
188
|
+
audioInputs: true,
|
|
189
|
+
pdfInputs: false,
|
|
190
|
+
videoInputs: true,
|
|
191
|
+
maxOutputTokens: 8e3,
|
|
192
|
+
reasoningOutput: true,
|
|
193
|
+
imageOutputs: false,
|
|
194
|
+
audioOutputs: true,
|
|
195
|
+
videoOutputs: false,
|
|
196
|
+
toolCalling: true,
|
|
197
|
+
structuredOutput: false
|
|
198
|
+
},
|
|
199
|
+
"gemini-2.5-flash-lite-preview-06-17": {
|
|
200
|
+
maxInputTokens: 1048576,
|
|
201
|
+
imageInputs: true,
|
|
202
|
+
audioInputs: true,
|
|
203
|
+
pdfInputs: true,
|
|
204
|
+
videoInputs: true,
|
|
205
|
+
maxOutputTokens: 65536,
|
|
206
|
+
reasoningOutput: true,
|
|
207
|
+
imageOutputs: false,
|
|
208
|
+
audioOutputs: false,
|
|
209
|
+
videoOutputs: false,
|
|
210
|
+
toolCalling: true,
|
|
211
|
+
structuredOutput: false
|
|
212
|
+
},
|
|
213
|
+
"gemini-2.5-flash-image-preview": {
|
|
214
|
+
maxInputTokens: 32768,
|
|
215
|
+
imageInputs: true,
|
|
216
|
+
audioInputs: false,
|
|
217
|
+
pdfInputs: false,
|
|
218
|
+
videoInputs: false,
|
|
219
|
+
maxOutputTokens: 32768,
|
|
220
|
+
reasoningOutput: true,
|
|
221
|
+
imageOutputs: true,
|
|
222
|
+
audioOutputs: false,
|
|
223
|
+
videoOutputs: false,
|
|
224
|
+
toolCalling: false,
|
|
225
|
+
structuredOutput: false
|
|
226
|
+
},
|
|
227
|
+
"gemini-2.5-flash-preview-09-2025": {
|
|
228
|
+
maxInputTokens: 1048576,
|
|
229
|
+
imageInputs: true,
|
|
230
|
+
audioInputs: true,
|
|
231
|
+
pdfInputs: true,
|
|
232
|
+
videoInputs: true,
|
|
233
|
+
maxOutputTokens: 65536,
|
|
234
|
+
reasoningOutput: true,
|
|
235
|
+
imageOutputs: false,
|
|
236
|
+
audioOutputs: false,
|
|
237
|
+
videoOutputs: false,
|
|
238
|
+
toolCalling: true,
|
|
239
|
+
structuredOutput: true
|
|
240
|
+
},
|
|
241
|
+
"gemini-2.5-flash-preview-04-17": {
|
|
242
|
+
maxInputTokens: 1048576,
|
|
243
|
+
imageInputs: true,
|
|
244
|
+
audioInputs: true,
|
|
245
|
+
pdfInputs: true,
|
|
246
|
+
videoInputs: true,
|
|
247
|
+
maxOutputTokens: 65536,
|
|
248
|
+
reasoningOutput: true,
|
|
249
|
+
imageOutputs: false,
|
|
250
|
+
audioOutputs: false,
|
|
251
|
+
videoOutputs: false,
|
|
252
|
+
toolCalling: true,
|
|
253
|
+
structuredOutput: false
|
|
254
|
+
},
|
|
255
|
+
"gemini-2.5-pro-preview-tts": {
|
|
256
|
+
maxInputTokens: 8e3,
|
|
257
|
+
imageInputs: false,
|
|
258
|
+
audioInputs: false,
|
|
259
|
+
pdfInputs: false,
|
|
260
|
+
videoInputs: false,
|
|
261
|
+
maxOutputTokens: 16e3,
|
|
262
|
+
reasoningOutput: false,
|
|
263
|
+
imageOutputs: false,
|
|
264
|
+
audioOutputs: true,
|
|
265
|
+
videoOutputs: false,
|
|
266
|
+
toolCalling: false,
|
|
267
|
+
structuredOutput: false
|
|
268
|
+
},
|
|
269
|
+
"gemini-2.5-pro": {
|
|
270
|
+
maxInputTokens: 1048576,
|
|
271
|
+
imageInputs: true,
|
|
272
|
+
audioInputs: true,
|
|
273
|
+
pdfInputs: true,
|
|
274
|
+
videoInputs: true,
|
|
275
|
+
maxOutputTokens: 65536,
|
|
276
|
+
reasoningOutput: true,
|
|
277
|
+
imageOutputs: false,
|
|
278
|
+
audioOutputs: false,
|
|
279
|
+
videoOutputs: false,
|
|
280
|
+
toolCalling: true,
|
|
281
|
+
structuredOutput: true
|
|
282
|
+
},
|
|
283
|
+
"gemini-1.5-flash": {
|
|
284
|
+
maxInputTokens: 1e6,
|
|
285
|
+
imageInputs: true,
|
|
286
|
+
audioInputs: true,
|
|
287
|
+
pdfInputs: false,
|
|
288
|
+
videoInputs: true,
|
|
289
|
+
maxOutputTokens: 8192,
|
|
290
|
+
reasoningOutput: false,
|
|
291
|
+
imageOutputs: false,
|
|
292
|
+
audioOutputs: false,
|
|
293
|
+
videoOutputs: false,
|
|
294
|
+
toolCalling: true,
|
|
295
|
+
structuredOutput: false
|
|
296
|
+
},
|
|
297
|
+
"gemini-1.5-flash-8b": {
|
|
298
|
+
maxInputTokens: 1e6,
|
|
299
|
+
imageInputs: true,
|
|
300
|
+
audioInputs: true,
|
|
301
|
+
pdfInputs: false,
|
|
302
|
+
videoInputs: true,
|
|
303
|
+
maxOutputTokens: 8192,
|
|
304
|
+
reasoningOutput: false,
|
|
305
|
+
imageOutputs: false,
|
|
306
|
+
audioOutputs: false,
|
|
307
|
+
videoOutputs: false,
|
|
308
|
+
toolCalling: true,
|
|
309
|
+
structuredOutput: false
|
|
310
|
+
},
|
|
311
|
+
"gemini-2.5-flash-lite-preview-09-2025": {
|
|
312
|
+
maxInputTokens: 1048576,
|
|
313
|
+
imageInputs: true,
|
|
314
|
+
audioInputs: true,
|
|
315
|
+
pdfInputs: true,
|
|
316
|
+
videoInputs: true,
|
|
317
|
+
maxOutputTokens: 65536,
|
|
318
|
+
reasoningOutput: true,
|
|
319
|
+
imageOutputs: false,
|
|
320
|
+
audioOutputs: false,
|
|
321
|
+
videoOutputs: false,
|
|
322
|
+
toolCalling: true,
|
|
323
|
+
structuredOutput: true
|
|
324
|
+
},
|
|
325
|
+
"gemini-1.5-pro": {
|
|
326
|
+
maxInputTokens: 1e6,
|
|
327
|
+
imageInputs: true,
|
|
328
|
+
audioInputs: true,
|
|
329
|
+
pdfInputs: false,
|
|
330
|
+
videoInputs: true,
|
|
331
|
+
maxOutputTokens: 8192,
|
|
332
|
+
reasoningOutput: false,
|
|
333
|
+
imageOutputs: false,
|
|
334
|
+
audioOutputs: false,
|
|
335
|
+
videoOutputs: false,
|
|
336
|
+
toolCalling: true,
|
|
337
|
+
structuredOutput: false
|
|
338
|
+
}
|
|
339
|
+
};
|
|
340
|
+
var profiles_default = PROFILES;
|
|
341
|
+
|
|
342
|
+
//#endregion
|
|
343
|
+
export { profiles_default as default };
|
|
344
|
+
//# sourceMappingURL=profiles.js.map
|