@depup/ai-sdk__google 4.0.67-depup.0 → 4.0.68-depup.0
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 +13 -0
- package/README.md +2 -2
- package/changes.json +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +305 -170
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/src/google-batch.ts +193 -12
- package/src/google-provider.ts +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @ai-sdk/google
|
|
2
2
|
|
|
3
|
+
## 4.0.68
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5ec21a6: fix: reject unsupported batch request types
|
|
8
|
+
- 7469a3b: feat: support image generation requests in batches
|
|
9
|
+
- Updated dependencies [5ec21a6]
|
|
10
|
+
- Updated dependencies [7469a3b]
|
|
11
|
+
- Updated dependencies [813bb36]
|
|
12
|
+
- Updated dependencies [c43e4b7]
|
|
13
|
+
- @ai-sdk/provider@4.0.14
|
|
14
|
+
- @ai-sdk/provider-utils@5.0.40
|
|
15
|
+
|
|
3
16
|
## 4.0.67
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ npm install @depup/ai-sdk__google
|
|
|
13
13
|
|
|
14
14
|
| Field | Value |
|
|
15
15
|
|-------|-------|
|
|
16
|
-
| Original | [@ai-sdk/google](https://www.npmjs.com/package/@ai-sdk/google) @ 4.0.
|
|
17
|
-
| Processed | 2026-09-
|
|
16
|
+
| Original | [@ai-sdk/google](https://www.npmjs.com/package/@ai-sdk/google) @ 4.0.68 |
|
|
17
|
+
| Processed | 2026-09-12 |
|
|
18
18
|
| Smoke test | failed |
|
|
19
19
|
| Deps updated | 0 |
|
|
20
20
|
|
package/changes.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -594,6 +594,7 @@ interface GoogleProvider extends ProviderV4 {
|
|
|
594
594
|
chat(modelId: GoogleModelId): LanguageModelV4;
|
|
595
595
|
experimental_batch(): Experimental_BatchV4<{
|
|
596
596
|
text: GoogleModelId;
|
|
597
|
+
image: GoogleImageModelId;
|
|
597
598
|
}>;
|
|
598
599
|
/**
|
|
599
600
|
* Creates a model for image generation.
|