@ai-sdk/google 3.0.48 → 3.0.49

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/dist/index.mjs CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  } from "@ai-sdk/provider-utils";
8
8
 
9
9
  // src/version.ts
10
- var VERSION = true ? "3.0.48" : "0.0.0-test";
10
+ var VERSION = true ? "3.0.49" : "0.0.0-test";
11
11
 
12
12
  // src/google-generative-ai-embedding-model.ts
13
13
  import {
@@ -94,8 +94,8 @@ var googleEmbeddingModelOptions = lazySchema2(
94
94
  ]).optional(),
95
95
  /**
96
96
  * Optional. Multimodal content parts for embedding non-text content
97
- * (images, video, PDF, audio). When provided, these parts are used
98
- * instead of the text values in the embedding request.
97
+ * (images, video, PDF, audio). When provided, these parts are merged
98
+ * with the text values in the embedding request.
99
99
  */
100
100
  content: z2.array(googleEmbeddingContentPartSchema).min(1).optional()
101
101
  })