@ai-sdk/google 2.0.0-canary.9 → 2.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,570 @@
1
1
  # @ai-sdk/google
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - f5464aa: feat(google): update docs + add YouTube URL support to Google Generative AI provider
8
+
9
+ ## 2.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - d5f588f: AI SDK 5
14
+
15
+ ### Patch Changes
16
+
17
+ - 78e7fa9: Add code execution provider defined tool
18
+ - f916255: feat (provider/google): add new gemini models
19
+ - 19a4336: Expose raw usageMetadata returned from Google Generative AI in providerMetadata
20
+ - 8af9e03: Added Image Models to the Google Provider for Imagen 3 Support
21
+ - 1a635b5: update supportedUrls to only support native URL
22
+ - 888b750: feat(providers/google): Add taskType support for Text Embedding Models
23
+ - 3259565: feat (providers/google): add thinking config to provider options
24
+ - e2aceaf: feat: add raw chunk support
25
+ - eb173f1: chore (providers): remove model shorthand deprecation warnings
26
+ - 6a16dcf: embed() now uses the single embeddings endpoint
27
+ No code updates are needed.
28
+
29
+ This is to make sure that users are not ratelimited when using the batch endpoint, since many models have different limits for batch and single embeddings.
30
+
31
+ Eg: Google has a limit of 150 RPM for batch requests, and 1500 RPM for single requests.
32
+
33
+ Before, AI SDK would always use the batch endpoint, even for embed() calls, which led to ratelimits.
34
+
35
+ This does not have any breaking functionality and is fully tested :)
36
+ if (values.length > 1) {
37
+ const batchResult = await this.doEmbedBatch({
38
+ values,
39
+ options,
40
+ });
41
+ return batchResult;
42
+ }
43
+
44
+ - 26735b5: chore(embedding-model): add v2 interface
45
+ - 5cf30ea: fix (provider/google): allow "OFF" for Google HarmBlockThreshold
46
+ - 443d8ec: feat(embedding-model-v2): add response body field
47
+ - c68931f: Support tool schemas that allow additional properties (e.g `z.record(z.string())`)
48
+ - 66962ed: fix(packages): export node10 compatible types
49
+ - a313780: fix: omit system message for gemma models
50
+ - fd98925: chore(providers/google): update embedding model to use providerOptions
51
+ - cb787ac: fix: remove non-functional models
52
+ - 7378473: chore(providers/google): switch to providerOptions
53
+ - f07a6d4: fix(providers/google): accept nullish in safetyRatings
54
+ - 75f03b1: Add Gemini 2.5 Flash Lite GA
55
+ - 779d916: feat: add provider option schemas for vertex imagegen and google genai
56
+ - 581a9be: fix (provider/google): prevent error when thinking signature is used
57
+ - 2e06f14: feat (provider/google): Change to provider defined tools
58
+
59
+ - Change the google search tool to be a provider defined tool
60
+ - Added new URL context tool as a provider defined tool
61
+
62
+ - 8e6b69d: feat(providers/google): Add support for Gemini 2.5 Pro and Gemini 2.5 Flash (now stable)
63
+ - 42fcd32: feat(google): automatically handle system instructions for Gemma models
64
+ - d1a034f: feature: using Zod 4 for internal stuff
65
+ - fd65bc6: chore(embedding-model-v2): rename rawResponse to response
66
+ - 878bf45: removes (unsupported) `additionalProperties` from the Schema sent in the request payloads to Google APIs
67
+ - 0f05690: Add gemini-embedding-001 model, add embedding provider options type export
68
+ - 7badba2: fix(google): grounding streaming sources
69
+ - 205077b: fix: improve Zod compatibility
70
+ - f10304b: feat(tool-calling): don't require the user to have to pass parameters
71
+ - Updated dependencies [a571d6e]
72
+ - Updated dependencies [742b7be]
73
+ - Updated dependencies [e7fcc86]
74
+ - Updated dependencies [7cddb72]
75
+ - Updated dependencies [ccce59b]
76
+ - Updated dependencies [e2b9e4b]
77
+ - Updated dependencies [95857aa]
78
+ - Updated dependencies [45c1ea2]
79
+ - Updated dependencies [6f6bb89]
80
+ - Updated dependencies [060370c]
81
+ - Updated dependencies [dc714f3]
82
+ - Updated dependencies [b5da06a]
83
+ - Updated dependencies [d1a1aa1]
84
+ - Updated dependencies [63f9e9b]
85
+ - Updated dependencies [5d142ab]
86
+ - Updated dependencies [d5f588f]
87
+ - Updated dependencies [e025824]
88
+ - Updated dependencies [0571b98]
89
+ - Updated dependencies [b6b43c7]
90
+ - Updated dependencies [4fef487]
91
+ - Updated dependencies [48d257a]
92
+ - Updated dependencies [0c0c0b3]
93
+ - Updated dependencies [0d2c085]
94
+ - Updated dependencies [40acf9b]
95
+ - Updated dependencies [9222aeb]
96
+ - Updated dependencies [e2aceaf]
97
+ - Updated dependencies [411e483]
98
+ - Updated dependencies [8ba77a7]
99
+ - Updated dependencies [7b3ae3f]
100
+ - Updated dependencies [a166433]
101
+ - Updated dependencies [26735b5]
102
+ - Updated dependencies [443d8ec]
103
+ - Updated dependencies [a8c8bd5]
104
+ - Updated dependencies [abf9a79]
105
+ - Updated dependencies [14c9410]
106
+ - Updated dependencies [e86be6f]
107
+ - Updated dependencies [9bf7291]
108
+ - Updated dependencies [2e13791]
109
+ - Updated dependencies [9f95b35]
110
+ - Updated dependencies [66962ed]
111
+ - Updated dependencies [0d06df6]
112
+ - Updated dependencies [472524a]
113
+ - Updated dependencies [dd3ff01]
114
+ - Updated dependencies [d9c98f4]
115
+ - Updated dependencies [05d2819]
116
+ - Updated dependencies [9301f86]
117
+ - Updated dependencies [0a87932]
118
+ - Updated dependencies [c4a2fec]
119
+ - Updated dependencies [957b739]
120
+ - Updated dependencies [79457bd]
121
+ - Updated dependencies [a3f768e]
122
+ - Updated dependencies [7435eb5]
123
+ - Updated dependencies [8aa9e20]
124
+ - Updated dependencies [4617fab]
125
+ - Updated dependencies [ac34802]
126
+ - Updated dependencies [0054544]
127
+ - Updated dependencies [cb68df0]
128
+ - Updated dependencies [ad80501]
129
+ - Updated dependencies [68ecf2f]
130
+ - Updated dependencies [9e9c809]
131
+ - Updated dependencies [32831c6]
132
+ - Updated dependencies [6dc848c]
133
+ - Updated dependencies [6b98118]
134
+ - Updated dependencies [d0f9495]
135
+ - Updated dependencies [63d791d]
136
+ - Updated dependencies [87b828f]
137
+ - Updated dependencies [3f2f00c]
138
+ - Updated dependencies [bfdca8d]
139
+ - Updated dependencies [0ff02bb]
140
+ - Updated dependencies [7979f7f]
141
+ - Updated dependencies [39a4fab]
142
+ - Updated dependencies [44f4aba]
143
+ - Updated dependencies [9bd5ab5]
144
+ - Updated dependencies [57edfcb]
145
+ - Updated dependencies [faf8446]
146
+ - Updated dependencies [7ea4132]
147
+ - Updated dependencies [d1a034f]
148
+ - Updated dependencies [5c56081]
149
+ - Updated dependencies [fd65bc6]
150
+ - Updated dependencies [023ba40]
151
+ - Updated dependencies [ea7a7c9]
152
+ - Updated dependencies [26535e0]
153
+ - Updated dependencies [e030615]
154
+ - Updated dependencies [5e57fae]
155
+ - Updated dependencies [393138b]
156
+ - Updated dependencies [c57e248]
157
+ - Updated dependencies [88a8ee5]
158
+ - Updated dependencies [41fa418]
159
+ - Updated dependencies [205077b]
160
+ - Updated dependencies [71f938d]
161
+ - Updated dependencies [3795467]
162
+ - Updated dependencies [28a5ed5]
163
+ - Updated dependencies [7182d14]
164
+ - Updated dependencies [c1e6647]
165
+ - Updated dependencies [1766ede]
166
+ - Updated dependencies [811dff3]
167
+ - Updated dependencies [f10304b]
168
+ - Updated dependencies [dd5fd43]
169
+ - Updated dependencies [33f4a6a]
170
+ - Updated dependencies [383cbfa]
171
+ - Updated dependencies [27deb4d]
172
+ - Updated dependencies [c4df419]
173
+ - @ai-sdk/provider-utils@3.0.0
174
+ - @ai-sdk/provider@2.0.0
175
+
176
+ ## 2.0.0-beta.19
177
+
178
+ ### Patch Changes
179
+
180
+ - Updated dependencies [88a8ee5]
181
+ - @ai-sdk/provider-utils@3.0.0-beta.10
182
+
183
+ ## 2.0.0-beta.18
184
+
185
+ ### Patch Changes
186
+
187
+ - 78e7fa9: Add code execution provider defined tool
188
+ - 0f05690: Add gemini-embedding-001 model, add embedding provider options type export
189
+ - Updated dependencies [27deb4d]
190
+ - @ai-sdk/provider@2.0.0-beta.2
191
+ - @ai-sdk/provider-utils@3.0.0-beta.9
192
+
193
+ ## 2.0.0-beta.17
194
+
195
+ ### Patch Changes
196
+
197
+ - eb173f1: chore (providers): remove model shorthand deprecation warnings
198
+ - Updated dependencies [dd5fd43]
199
+ - @ai-sdk/provider-utils@3.0.0-beta.8
200
+
201
+ ## 2.0.0-beta.16
202
+
203
+ ### Patch Changes
204
+
205
+ - Updated dependencies [e7fcc86]
206
+ - @ai-sdk/provider-utils@3.0.0-beta.7
207
+
208
+ ## 2.0.0-beta.15
209
+
210
+ ### Patch Changes
211
+
212
+ - Updated dependencies [ac34802]
213
+ - @ai-sdk/provider-utils@3.0.0-beta.6
214
+
215
+ ## 2.0.0-beta.14
216
+
217
+ ### Patch Changes
218
+
219
+ - 75f03b1: Add Gemini 2.5 Flash Lite GA
220
+
221
+ ## 2.0.0-beta.13
222
+
223
+ ### Patch Changes
224
+
225
+ - Updated dependencies [57edfcb]
226
+ - Updated dependencies [383cbfa]
227
+ - @ai-sdk/provider-utils@3.0.0-beta.5
228
+
229
+ ## 2.0.0-beta.12
230
+
231
+ ### Patch Changes
232
+
233
+ - 205077b: fix: improve Zod compatibility
234
+ - Updated dependencies [205077b]
235
+ - @ai-sdk/provider-utils@3.0.0-beta.4
236
+
237
+ ## 2.0.0-beta.11
238
+
239
+ ### Patch Changes
240
+
241
+ - 6a16dcf: embed() now uses the single embeddings endpoint
242
+ No code updates are needed.
243
+
244
+ This is to make sure that users are not ratelimited when using the batch endpoint, since many models have different limits for batch and single embeddings.
245
+
246
+ Eg: Google has a limit of 150 RPM for batch requests, and 1500 RPM for single requests.
247
+
248
+ Before, AI SDK would always use the batch endpoint, even for embed() calls, which led to ratelimits.
249
+
250
+ This does not have any breaking functionality and is fully tested :)
251
+ if (values.length > 1) {
252
+ const batchResult = await this.doEmbedBatch({
253
+ values,
254
+ options,
255
+ });
256
+ return batchResult;
257
+ }
258
+
259
+ ## 2.0.0-beta.10
260
+
261
+ ### Patch Changes
262
+
263
+ - 7badba2: fix(google): grounding streaming sources
264
+ - Updated dependencies [05d2819]
265
+ - @ai-sdk/provider-utils@3.0.0-beta.3
266
+
267
+ ## 2.0.0-beta.9
268
+
269
+ ### Patch Changes
270
+
271
+ - 8af9e03: Added Image Models to the Google Provider for Imagen 3 Support
272
+
273
+ ## 2.0.0-beta.8
274
+
275
+ ### Patch Changes
276
+
277
+ - 2e06f14: feat (provider/google): Change to provider defined tools
278
+
279
+ - Change the google search tool to be a provider defined tool
280
+ - Added new URL context tool as a provider defined tool
281
+
282
+ ## 2.0.0-beta.7
283
+
284
+ ### Patch Changes
285
+
286
+ - 19a4336: Expose raw usageMetadata returned from Google Generative AI in providerMetadata
287
+
288
+ ## 2.0.0-beta.6
289
+
290
+ ### Patch Changes
291
+
292
+ - 878bf45: removes (unsupported) `additionalProperties` from the Schema sent in the request payloads to Google APIs
293
+
294
+ ## 2.0.0-beta.5
295
+
296
+ ### Patch Changes
297
+
298
+ - 42fcd32: feat(google): automatically handle system instructions for Gemma models
299
+
300
+ ## 2.0.0-beta.4
301
+
302
+ ### Patch Changes
303
+
304
+ - c68931f: Support tool schemas that allow additional properties (e.g `z.record(z.string())`)
305
+ - 8e6b69d: feat(providers/google): Add support for Gemini 2.5 Pro and Gemini 2.5 Flash (now stable)
306
+
307
+ ## 2.0.0-beta.3
308
+
309
+ ### Patch Changes
310
+
311
+ - cb787ac: fix: remove non-functional models
312
+ - d1a034f: feature: using Zod 4 for internal stuff
313
+ - Updated dependencies [0571b98]
314
+ - Updated dependencies [39a4fab]
315
+ - Updated dependencies [d1a034f]
316
+ - @ai-sdk/provider-utils@3.0.0-beta.2
317
+
318
+ ## 2.0.0-beta.2
319
+
320
+ ### Patch Changes
321
+
322
+ - a313780: fix: omit system message for gemma models
323
+
324
+ ## 2.0.0-beta.1
325
+
326
+ ### Patch Changes
327
+
328
+ - Updated dependencies [742b7be]
329
+ - Updated dependencies [7cddb72]
330
+ - Updated dependencies [ccce59b]
331
+ - Updated dependencies [e2b9e4b]
332
+ - Updated dependencies [45c1ea2]
333
+ - Updated dependencies [e025824]
334
+ - Updated dependencies [0d06df6]
335
+ - Updated dependencies [472524a]
336
+ - Updated dependencies [dd3ff01]
337
+ - Updated dependencies [7435eb5]
338
+ - Updated dependencies [cb68df0]
339
+ - Updated dependencies [bfdca8d]
340
+ - Updated dependencies [44f4aba]
341
+ - Updated dependencies [023ba40]
342
+ - Updated dependencies [5e57fae]
343
+ - Updated dependencies [71f938d]
344
+ - Updated dependencies [28a5ed5]
345
+ - @ai-sdk/provider@2.0.0-beta.1
346
+ - @ai-sdk/provider-utils@3.0.0-beta.1
347
+
348
+ ## 2.0.0-alpha.15
349
+
350
+ ### Patch Changes
351
+
352
+ - Updated dependencies [48d257a]
353
+ - Updated dependencies [8ba77a7]
354
+ - @ai-sdk/provider@2.0.0-alpha.15
355
+ - @ai-sdk/provider-utils@3.0.0-alpha.15
356
+
357
+ ## 2.0.0-alpha.14
358
+
359
+ ### Patch Changes
360
+
361
+ - Updated dependencies [b5da06a]
362
+ - Updated dependencies [63f9e9b]
363
+ - Updated dependencies [2e13791]
364
+ - @ai-sdk/provider@2.0.0-alpha.14
365
+ - @ai-sdk/provider-utils@3.0.0-alpha.14
366
+
367
+ ## 2.0.0-alpha.13
368
+
369
+ ### Patch Changes
370
+
371
+ - Updated dependencies [68ecf2f]
372
+ - @ai-sdk/provider@2.0.0-alpha.13
373
+ - @ai-sdk/provider-utils@3.0.0-alpha.13
374
+
375
+ ## 2.0.0-alpha.12
376
+
377
+ ### Patch Changes
378
+
379
+ - e2aceaf: feat: add raw chunk support
380
+ - Updated dependencies [e2aceaf]
381
+ - @ai-sdk/provider@2.0.0-alpha.12
382
+ - @ai-sdk/provider-utils@3.0.0-alpha.12
383
+
384
+ ## 2.0.0-alpha.11
385
+
386
+ ### Patch Changes
387
+
388
+ - Updated dependencies [c1e6647]
389
+ - @ai-sdk/provider@2.0.0-alpha.11
390
+ - @ai-sdk/provider-utils@3.0.0-alpha.11
391
+
392
+ ## 2.0.0-alpha.10
393
+
394
+ ### Patch Changes
395
+
396
+ - 581a9be: fix (provider/google): prevent error when thinking signature is used
397
+ - Updated dependencies [c4df419]
398
+ - @ai-sdk/provider@2.0.0-alpha.10
399
+ - @ai-sdk/provider-utils@3.0.0-alpha.10
400
+
401
+ ## 2.0.0-alpha.9
402
+
403
+ ### Patch Changes
404
+
405
+ - Updated dependencies [811dff3]
406
+ - @ai-sdk/provider@2.0.0-alpha.9
407
+ - @ai-sdk/provider-utils@3.0.0-alpha.9
408
+
409
+ ## 2.0.0-alpha.8
410
+
411
+ ### Patch Changes
412
+
413
+ - 1a635b5: update supportedUrls to only support native URL
414
+ - Updated dependencies [4fef487]
415
+ - Updated dependencies [9222aeb]
416
+ - @ai-sdk/provider-utils@3.0.0-alpha.8
417
+ - @ai-sdk/provider@2.0.0-alpha.8
418
+
419
+ ## 2.0.0-alpha.7
420
+
421
+ ### Patch Changes
422
+
423
+ - Updated dependencies [5c56081]
424
+ - @ai-sdk/provider@2.0.0-alpha.7
425
+ - @ai-sdk/provider-utils@3.0.0-alpha.7
426
+
427
+ ## 2.0.0-alpha.6
428
+
429
+ ### Patch Changes
430
+
431
+ - Updated dependencies [0d2c085]
432
+ - @ai-sdk/provider@2.0.0-alpha.6
433
+ - @ai-sdk/provider-utils@3.0.0-alpha.6
434
+
435
+ ## 2.0.0-alpha.4
436
+
437
+ ### Patch Changes
438
+
439
+ - Updated dependencies [dc714f3]
440
+ - @ai-sdk/provider@2.0.0-alpha.4
441
+ - @ai-sdk/provider-utils@3.0.0-alpha.4
442
+
443
+ ## 2.0.0-alpha.3
444
+
445
+ ### Patch Changes
446
+
447
+ - Updated dependencies [6b98118]
448
+ - @ai-sdk/provider@2.0.0-alpha.3
449
+ - @ai-sdk/provider-utils@3.0.0-alpha.3
450
+
451
+ ## 2.0.0-alpha.2
452
+
453
+ ### Patch Changes
454
+
455
+ - Updated dependencies [26535e0]
456
+ - @ai-sdk/provider@2.0.0-alpha.2
457
+ - @ai-sdk/provider-utils@3.0.0-alpha.2
458
+
459
+ ## 2.0.0-alpha.1
460
+
461
+ ### Patch Changes
462
+
463
+ - Updated dependencies [3f2f00c]
464
+ - @ai-sdk/provider@2.0.0-alpha.1
465
+ - @ai-sdk/provider-utils@3.0.0-alpha.1
466
+
467
+ ## 2.0.0-canary.20
468
+
469
+ ### Patch Changes
470
+
471
+ - Updated dependencies [faf8446]
472
+ - @ai-sdk/provider-utils@3.0.0-canary.19
473
+
474
+ ## 2.0.0-canary.19
475
+
476
+ ### Patch Changes
477
+
478
+ - Updated dependencies [40acf9b]
479
+ - @ai-sdk/provider-utils@3.0.0-canary.18
480
+
481
+ ## 2.0.0-canary.18
482
+
483
+ ### Patch Changes
484
+
485
+ - f07a6d4: fix(providers/google): accept nullish in safetyRatings
486
+ - Updated dependencies [ea7a7c9]
487
+ - @ai-sdk/provider-utils@3.0.0-canary.17
488
+
489
+ ## 2.0.0-canary.17
490
+
491
+ ### Patch Changes
492
+
493
+ - Updated dependencies [87b828f]
494
+ - @ai-sdk/provider-utils@3.0.0-canary.16
495
+
496
+ ## 2.0.0-canary.16
497
+
498
+ ### Patch Changes
499
+
500
+ - Updated dependencies [a571d6e]
501
+ - Updated dependencies [a8c8bd5]
502
+ - Updated dependencies [7979f7f]
503
+ - Updated dependencies [41fa418]
504
+ - @ai-sdk/provider-utils@3.0.0-canary.15
505
+ - @ai-sdk/provider@2.0.0-canary.14
506
+
507
+ ## 2.0.0-canary.15
508
+
509
+ ### Patch Changes
510
+
511
+ - Updated dependencies [957b739]
512
+ - Updated dependencies [9bd5ab5]
513
+ - @ai-sdk/provider-utils@3.0.0-canary.14
514
+ - @ai-sdk/provider@2.0.0-canary.13
515
+
516
+ ## 2.0.0-canary.14
517
+
518
+ ### Patch Changes
519
+
520
+ - f916255: feat (provider/google): add new gemini models
521
+ - Updated dependencies [7b3ae3f]
522
+ - Updated dependencies [0ff02bb]
523
+ - @ai-sdk/provider@2.0.0-canary.12
524
+ - @ai-sdk/provider-utils@3.0.0-canary.13
525
+
526
+ ## 2.0.0-canary.13
527
+
528
+ ### Patch Changes
529
+
530
+ - 7378473: chore(providers/google): switch to providerOptions
531
+ - Updated dependencies [9bf7291]
532
+ - Updated dependencies [4617fab]
533
+ - Updated dependencies [e030615]
534
+ - @ai-sdk/provider@2.0.0-canary.11
535
+ - @ai-sdk/provider-utils@3.0.0-canary.12
536
+
537
+ ## 2.0.0-canary.12
538
+
539
+ ### Patch Changes
540
+
541
+ - 888b750: feat(providers/google): Add taskType support for Text Embedding Models
542
+ - 66962ed: fix(packages): export node10 compatible types
543
+ - Updated dependencies [66962ed]
544
+ - Updated dependencies [9301f86]
545
+ - Updated dependencies [a3f768e]
546
+ - @ai-sdk/provider-utils@3.0.0-canary.11
547
+ - @ai-sdk/provider@2.0.0-canary.10
548
+
549
+ ## 2.0.0-canary.11
550
+
551
+ ### Patch Changes
552
+
553
+ - Updated dependencies [e86be6f]
554
+ - @ai-sdk/provider@2.0.0-canary.9
555
+ - @ai-sdk/provider-utils@3.0.0-canary.10
556
+
557
+ ## 2.0.0-canary.10
558
+
559
+ ### Patch Changes
560
+
561
+ - 3259565: feat (providers/google): add thinking config to provider options
562
+ - fd98925: chore(providers/google): update embedding model to use providerOptions
563
+ - Updated dependencies [95857aa]
564
+ - Updated dependencies [7ea4132]
565
+ - @ai-sdk/provider@2.0.0-canary.8
566
+ - @ai-sdk/provider-utils@3.0.0-canary.9
567
+
3
568
  ## 2.0.0-canary.9
4
569
 
5
570
  ### Patch Changes
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # AI SDK - Google Generative AI Provider
2
2
 
3
- The **[Google Generative AI provider](https://sdk.vercel.ai/providers/ai-sdk-providers/google-generative-ai)** for the [AI SDK](https://sdk.vercel.ai/docs) contains language model support for the [Google Generative AI](https://ai.google/discover/generativeai/) APIs.
3
+ The **[Google Generative AI provider](https://ai-sdk.dev/providers/ai-sdk-providers/google-generative-ai)** for the [AI SDK](https://ai-sdk.dev/docs) contains language model support for the [Google Generative AI](https://ai.google/discover/generativeai/) APIs.
4
4
 
5
5
  ## Setup
6
6
 
@@ -32,4 +32,4 @@ const { text } = await generateText({
32
32
 
33
33
  ## Documentation
34
34
 
35
- Please check out the **[Google Generative AI provider documentation](https://sdk.vercel.ai/providers/ai-sdk-providers/google-generative-ai)** for more information.
35
+ Please check out the **[Google Generative AI provider documentation](https://ai-sdk.dev/providers/ai-sdk-providers/google-generative-ai)** for more information.