@ai-sdk/cerebras 2.0.43 → 2.0.45

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,20 @@
1
1
  # @ai-sdk/cerebras
2
2
 
3
+ ## 2.0.45
4
+
5
+ ### Patch Changes
6
+
7
+ - d42076d: Add AI Gateway hint to provider READMEs
8
+ - Updated dependencies [d42076d]
9
+ - @ai-sdk/openai-compatible@2.0.41
10
+
11
+ ## 2.0.44
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [01c9c16]
16
+ - @ai-sdk/openai-compatible@2.0.40
17
+
3
18
  ## 2.0.43
4
19
 
5
20
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  The **Cerebras provider** for the [AI SDK](https://ai-sdk.dev/docs) contains language model support for [Cerebras](https://cerebras.ai), offering high-speed AI model inference powered by Cerebras Wafer-Scale Engines and CS-3 systems.
4
4
 
5
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access Cerebras (and hundreds of models from other providers) — no additional packages, API keys, or extra cost. [Get started with AI Gateway](https://vercel.com/ai-gateway).
6
+
5
7
  ## Setup
6
8
 
7
9
  The Cerebras provider is available in the `@ai-sdk/cerebras` module. You can install it with
package/dist/index.js CHANGED
@@ -33,7 +33,7 @@ var import_provider_utils = require("@ai-sdk/provider-utils");
33
33
  var import_v4 = require("zod/v4");
34
34
 
35
35
  // src/version.ts
36
- var VERSION = true ? "2.0.43" : "0.0.0-test";
36
+ var VERSION = true ? "2.0.45" : "0.0.0-test";
37
37
 
38
38
  // src/cerebras-provider.ts
39
39
  var cerebrasErrorSchema = import_v4.z.object({
package/dist/index.mjs CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  import { z } from "zod/v4";
12
12
 
13
13
  // src/version.ts
14
- var VERSION = true ? "2.0.43" : "0.0.0-test";
14
+ var VERSION = true ? "2.0.45" : "0.0.0-test";
15
15
 
16
16
  // src/cerebras-provider.ts
17
17
  var cerebrasErrorSchema = z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/cerebras",
3
- "version": "2.0.43",
3
+ "version": "2.0.45",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -29,7 +29,7 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@ai-sdk/openai-compatible": "2.0.39",
32
+ "@ai-sdk/openai-compatible": "2.0.41",
33
33
  "@ai-sdk/provider": "3.0.8",
34
34
  "@ai-sdk/provider-utils": "4.0.23"
35
35
  },