@ai-sdk/fireworks 3.0.0-canary.42 → 3.0.0-canary.44
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 +16 -0
- package/dist/index.js +1 -1
- package/docs/26-fireworks.mdx +0 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @ai-sdk/fireworks
|
|
2
2
|
|
|
3
|
+
## 3.0.0-canary.44
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d848405]
|
|
8
|
+
- @ai-sdk/provider-utils@5.0.0-canary.37
|
|
9
|
+
- @ai-sdk/openai-compatible@3.0.0-canary.44
|
|
10
|
+
|
|
11
|
+
## 3.0.0-canary.43
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [ca39020]
|
|
16
|
+
- @ai-sdk/provider-utils@5.0.0-canary.36
|
|
17
|
+
- @ai-sdk/openai-compatible@3.0.0-canary.43
|
|
18
|
+
|
|
3
19
|
## 3.0.0-canary.42
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -305,7 +305,7 @@ import {
|
|
|
305
305
|
import { z as z2 } from "zod/v4";
|
|
306
306
|
|
|
307
307
|
// src/version.ts
|
|
308
|
-
var VERSION = true ? "3.0.0-canary.
|
|
308
|
+
var VERSION = true ? "3.0.0-canary.44" : "0.0.0-test";
|
|
309
309
|
|
|
310
310
|
// src/fireworks-provider.ts
|
|
311
311
|
var fireworksErrorSchema = z2.object({
|
package/docs/26-fireworks.mdx
CHANGED
|
@@ -138,7 +138,6 @@ The following optional provider options are available for Fireworks chat models:
|
|
|
138
138
|
- **thinking** _object_
|
|
139
139
|
|
|
140
140
|
Configuration for thinking/reasoning models like Kimi K2.5.
|
|
141
|
-
|
|
142
141
|
- **type** _'enabled' | 'disabled'_
|
|
143
142
|
|
|
144
143
|
Whether to enable thinking mode.
|
|
@@ -150,7 +149,6 @@ The following optional provider options are available for Fireworks chat models:
|
|
|
150
149
|
- **reasoningHistory** _'disabled' | 'interleaved' | 'preserved'_
|
|
151
150
|
|
|
152
151
|
Controls how reasoning history is handled in multi-turn conversations:
|
|
153
|
-
|
|
154
152
|
- `'disabled'`: Remove reasoning from history
|
|
155
153
|
- `'interleaved'`: Include reasoning between tool calls within a single turn
|
|
156
154
|
- `'preserved'`: Keep all reasoning in history
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/fireworks",
|
|
3
|
-
"version": "3.0.0-canary.
|
|
3
|
+
"version": "3.0.0-canary.44",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@ai-sdk/openai-compatible": "3.0.0-canary.
|
|
32
|
+
"@ai-sdk/openai-compatible": "3.0.0-canary.44",
|
|
33
33
|
"@ai-sdk/provider": "4.0.0-canary.16",
|
|
34
|
-
"@ai-sdk/provider-utils": "5.0.0-canary.
|
|
34
|
+
"@ai-sdk/provider-utils": "5.0.0-canary.37"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "20.17.24",
|