@ai-sdk/fireworks 1.0.36 → 1.0.37

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,13 @@
1
1
  # @ai-sdk/fireworks
2
2
 
3
+ ## 1.0.37
4
+
5
+ ### Patch Changes
6
+
7
+ - 5543cd1: Add AI Gateway hint to provider READMEs
8
+ - Updated dependencies [5543cd1]
9
+ - @ai-sdk/openai-compatible@1.0.36
10
+
3
11
  ## 1.0.36
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  The **[Fireworks provider](https://ai-sdk.dev/providers/ai-sdk-providers/fireworks)** for the [AI SDK](https://ai-sdk.dev/docs) contains language model and image model support for the [Fireworks](https://fireworks.ai) platform.
4
4
 
5
+ > **Deploying to Vercel?** With Vercel's AI Gateway you can access Fireworks (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 Fireworks provider is available in the `@ai-sdk/fireworks` module. You can install it with
package/dist/index.js CHANGED
@@ -140,7 +140,7 @@ var import_provider_utils2 = require("@ai-sdk/provider-utils");
140
140
  var import_v4 = require("zod/v4");
141
141
 
142
142
  // src/version.ts
143
- var VERSION = true ? "1.0.36" : "0.0.0-test";
143
+ var VERSION = true ? "1.0.37" : "0.0.0-test";
144
144
 
145
145
  // src/fireworks-provider.ts
146
146
  var fireworksErrorSchema = import_v4.z.object({
package/dist/index.mjs CHANGED
@@ -124,7 +124,7 @@ import {
124
124
  import { z } from "zod/v4";
125
125
 
126
126
  // src/version.ts
127
- var VERSION = true ? "1.0.36" : "0.0.0-test";
127
+ var VERSION = true ? "1.0.37" : "0.0.0-test";
128
128
 
129
129
  // src/fireworks-provider.ts
130
130
  var fireworksErrorSchema = z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/fireworks",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -19,7 +19,7 @@
19
19
  }
20
20
  },
21
21
  "dependencies": {
22
- "@ai-sdk/openai-compatible": "1.0.35",
22
+ "@ai-sdk/openai-compatible": "1.0.36",
23
23
  "@ai-sdk/provider": "2.0.1",
24
24
  "@ai-sdk/provider-utils": "3.0.23"
25
25
  },