@langchain/google-genai 1.0.0 → 1.0.1

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.
@@ -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
@@ -0,0 +1 @@
1
+ {"version":3,"file":"profiles.js","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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-genai",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Google Generative AI integration for LangChain.js",
5
5
  "author": "LangChain",
6
6
  "license": "MIT",
@@ -36,9 +36,9 @@
36
36
  "ts-jest": "^29.1.0",
37
37
  "typescript": "~5.8.3",
38
38
  "zod": "^3.25.76",
39
- "@langchain/eslint": "0.1.0",
40
- "@langchain/standard-tests": "0.0.0",
41
- "@langchain/core": "1.0.0"
39
+ "@langchain/standard-tests": "0.0.1",
40
+ "@langchain/core": "1.0.5",
41
+ "@langchain/eslint": "0.1.0"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
@@ -66,7 +66,8 @@
66
66
  "LICENSE"
67
67
  ],
68
68
  "scripts": {
69
- "build": "pnpm --filter @langchain/build compile @langchain/google-genai",
69
+ "build": "turbo build:compile --filter @langchain/google-genai",
70
+ "build:compile": "pnpm --filter @langchain/build compile @langchain/google-genai",
70
71
  "lint:eslint": "eslint --cache src/",
71
72
  "lint:dpdm": "dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
72
73
  "lint": "pnpm lint:eslint && pnpm lint:dpdm",
@@ -80,6 +81,8 @@
80
81
  "test:standard:int": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.standard\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
81
82
  "test:standard": "pnpm test:standard:unit && pnpm test:standard:int",
82
83
  "format": "prettier --config .prettierrc --write \"src\"",
83
- "format:check": "prettier --config .prettierrc --check \"src\""
84
+ "format:check": "prettier --config .prettierrc --check \"src\"",
85
+ "typegen": "pnpm run typegen:profiles",
86
+ "typegen:profiles": "pnpm --filter @langchain/model-profiles make --config profiles.toml"
84
87
  }
85
88
  }