@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/CHANGELOG.md +6 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/google-generative-ai-embedding-options.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/google",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.49",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@ai-sdk/provider": "
|
|
40
|
-
"@ai-sdk/provider
|
|
39
|
+
"@ai-sdk/provider-utils": "4.0.20",
|
|
40
|
+
"@ai-sdk/provider": "3.0.8"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "20.17.24",
|
|
@@ -55,8 +55,8 @@ export const googleEmbeddingModelOptions = lazySchema(() =>
|
|
|
55
55
|
|
|
56
56
|
/**
|
|
57
57
|
* Optional. Multimodal content parts for embedding non-text content
|
|
58
|
-
* (images, video, PDF, audio). When provided, these parts are
|
|
59
|
-
*
|
|
58
|
+
* (images, video, PDF, audio). When provided, these parts are merged
|
|
59
|
+
* with the text values in the embedding request.
|
|
60
60
|
*/
|
|
61
61
|
content: z.array(googleEmbeddingContentPartSchema).min(1).optional(),
|
|
62
62
|
}),
|