@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 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
@@ -10,7 +10,7 @@ import {
10
10
  } from "@ai-sdk/provider-utils";
11
11
 
12
12
  // src/version.ts
13
- var VERSION = true ? "5.0.75" : "0.0.0-test";
13
+ var VERSION = true ? "5.0.77" : "0.0.0-test";
14
14
 
15
15
  // src/edge/google-vertex-auth-edge.ts
16
16
  var loadCredentials = async () => {
@@ -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.75" : "0.0.0-test";
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,