@ai-sdk/google 3.0.33 → 3.0.34

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,12 @@
1
1
  # @ai-sdk/google
2
2
 
3
+ ## 3.0.34
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [58bc42d]
8
+ - @ai-sdk/provider-utils@4.0.16
9
+
3
10
  ## 3.0.33
4
11
 
5
12
  ### 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 ? "3.0.33" : "0.0.0-test";
33
+ var VERSION = true ? "3.0.34" : "0.0.0-test";
34
34
 
35
35
  // src/google-generative-ai-embedding-model.ts
36
36
  var import_provider = require("@ai-sdk/provider");
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.33" : "0.0.0-test";
10
+ var VERSION = true ? "3.0.34" : "0.0.0-test";
11
11
 
12
12
  // src/google-generative-ai-embedding-model.ts
13
13
  import {
@@ -1109,7 +1109,7 @@ The Google Generative AI provider sends API calls to the right endpoint based on
1109
1109
  - **Single embeddings**: When embedding a single value with `embed()`, the provider uses the single `:embedContent` endpoint, which typically has higher rate limits compared to the batch endpoint.
1110
1110
  - **Batch embeddings**: When embedding multiple values with `embedMany()` or multiple values in `embed()`, the provider uses the `:batchEmbedContents` endpoint.
1111
1111
 
1112
- Google Generative AI embedding models support aditional settings. You can pass them as an options argument:
1112
+ Google Generative AI embedding models support additional settings. You can pass them as an options argument:
1113
1113
 
1114
1114
  ```ts
1115
1115
  import { google, type GoogleEmbeddingModelOptions } from '@ai-sdk/google';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/google",
3
- "version": "3.0.33",
3
+ "version": "3.0.34",
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-utils": "4.0.15",
40
- "@ai-sdk/provider": "3.0.8"
39
+ "@ai-sdk/provider": "3.0.8",
40
+ "@ai-sdk/provider-utils": "4.0.16"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/node": "20.17.24",