@ai-sdk/google-vertex 5.0.75 → 5.0.77
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 +26 -0
- package/dist/anthropic/edge/index.js +1 -1
- package/dist/edge/index.js +2 -1
- package/dist/edge/index.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/maas/edge/index.js +11 -2
- package/dist/maas/edge/index.js.map +1 -1
- package/dist/maas/index.js +10 -1
- package/dist/maas/index.js.map +1 -1
- package/dist/xai/edge/index.js +1 -1
- package/docs/16-google-vertex.mdx +6 -0
- package/package.json +6 -6
- package/src/google-vertex-image-model.ts +3 -0
- package/src/maas/google-vertex-maas-provider.ts +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @ai-sdk/google-vertex
|
|
2
2
|
|
|
3
|
+
## 5.0.77
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 45099da: Retry unclassified empty image results, preserve retry-attempt accounting, add provider-independent result retryability classification, and mark Google and Google Vertex prompt blocks as terminal.
|
|
8
|
+
- Updated dependencies [a4ba394]
|
|
9
|
+
- Updated dependencies [45099da]
|
|
10
|
+
- Updated dependencies [9e1d1b2]
|
|
11
|
+
- Updated dependencies [a495511]
|
|
12
|
+
- @ai-sdk/provider@4.0.11
|
|
13
|
+
- @ai-sdk/anthropic@4.0.50
|
|
14
|
+
- @ai-sdk/google@4.0.65
|
|
15
|
+
- @ai-sdk/provider-utils@5.0.37
|
|
16
|
+
- @ai-sdk/openai-compatible@3.0.45
|
|
17
|
+
|
|
18
|
+
## 5.0.76
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 2d1f05d: fix(vertex): default Llama 4 output tokens
|
|
23
|
+
- Updated dependencies [e5a22f0]
|
|
24
|
+
- Updated dependencies [d4485fe]
|
|
25
|
+
- Updated dependencies [63533eb]
|
|
26
|
+
- @ai-sdk/openai-compatible@3.0.44
|
|
27
|
+
- @ai-sdk/google@4.0.64
|
|
28
|
+
|
|
3
29
|
## 5.0.75
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/dist/edge/index.js
CHANGED
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
} from "@ai-sdk/provider-utils";
|
|
19
19
|
|
|
20
20
|
// src/version.ts
|
|
21
|
-
var VERSION = true ? "5.0.
|
|
21
|
+
var VERSION = true ? "5.0.77" : "0.0.0-test";
|
|
22
22
|
|
|
23
23
|
// src/google-vertex-embedding-model.ts
|
|
24
24
|
import {
|
|
@@ -395,6 +395,7 @@ var GoogleVertexImageModel = class _GoogleVertexImageModel {
|
|
|
395
395
|
};
|
|
396
396
|
return {
|
|
397
397
|
images,
|
|
398
|
+
...result.finishReason.unified === "content-filter" ? { isRetryable: false } : {},
|
|
398
399
|
warnings,
|
|
399
400
|
providerMetadata: {
|
|
400
401
|
googleVertex: geminiPayload,
|