@ai-sdk/google 4.0.0-beta.5 → 4.0.0-beta.6

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,11 @@
1
1
  # @ai-sdk/google
2
2
 
3
+ ## 4.0.0-beta.6
4
+
5
+ ### Patch Changes
6
+
7
+ - add4326: fix(provider/google): correct JSDoc for multimodal embedding content option
8
+
3
9
  ## 4.0.0-beta.5
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -30,7 +30,7 @@ module.exports = __toCommonJS(src_exports);
30
30
  var import_provider_utils16 = require("@ai-sdk/provider-utils");
31
31
 
32
32
  // src/version.ts
33
- var VERSION = true ? "4.0.0-beta.5" : "0.0.0-test";
33
+ var VERSION = true ? "4.0.0-beta.6" : "0.0.0-test";
34
34
 
35
35
  // src/google-generative-ai-embedding-model.ts
36
36
  var import_provider = require("@ai-sdk/provider");
@@ -100,8 +100,8 @@ var googleEmbeddingModelOptions = (0, import_provider_utils2.lazySchema)(
100
100
  ]).optional(),
101
101
  /**
102
102
  * Optional. Multimodal content parts for embedding non-text content
103
- * (images, video, PDF, audio). When provided, these parts are used
104
- * instead of the text values in the embedding request.
103
+ * (images, video, PDF, audio). When provided, these parts are merged
104
+ * with the text values in the embedding request.
105
105
  */
106
106
  content: import_v42.z.array(googleEmbeddingContentPartSchema).min(1).optional()
107
107
  })