pi-fireworks-provider 1.6.2 → 1.6.3

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.
Files changed (3) hide show
  1. package/README.md +2 -1
  2. package/models.json +17 -0
  3. package/package.json +11 -11
package/README.md CHANGED
@@ -15,7 +15,7 @@ _Kimi, MiniMax, GLM, DeepSeek, GPT-OSS — via Fireworks AI's Anthropic Messages
15
15
 
16
16
  ## Features
17
17
 
18
- - **50+ AI Models** including Kimi K2.5, MiniMax M2.5, GLM 4.5/4.7/5, DeepSeek V3.1/V3.2, DeepSeek V4 Flash, and GPT-OSS
18
+ - **51+ AI Models** including Kimi K2.5, MiniMax M2.5, GLM 4.5/4.7/5, DeepSeek V3.1/V3.2, DeepSeek V4 Flash, and GPT-OSS
19
19
  - **Dual API support** via Fireworks AI's Anthropic Messages and OpenAI-compatible completions endpoints (per-model routing, matching pi core's Fireworks provider)
20
20
  - **Service tiers** — toggle Fireworks `priority` vs `standard` per request on supported models (with priority pricing reflected in cost tracking), via a keybinding, `/fireworks-tier`, and a footer status area
21
21
  - **Preserved thinking** — toggle Fireworks' `reasoning_history: "preserved"` so prior assistant reasoning is retained across turns (better multi-turn recall; uses more tokens), via the `/fireworks-settings` panel, with a model-select notification. Matches neuralwatt/makora's settings-only UX, adapted to Fireworks' single global `reasoning_history` knob
@@ -79,6 +79,7 @@ pi
79
79
  | DeepSeek V4 Pro | Text | 1.0M | 384K | $1.74 | $3.48 |
80
80
  | DeepSeek V4 Pro (router) | Text | 1.0M | 384K | $1.74 | $3.48 |
81
81
  | DeepSeek V4 Pro 0813 | Text | 1.0M | 384K | — | — |
82
+ | DeepSeek V4.1 Flash | Text + Image | 1.0M | 0 | — | — |
82
83
  | DeepSeek-V4-Flash-Vision-Exp | Text + Image | 1.0M | 0 | — | — |
83
84
  | Gemma 4 26B A4B IT | Text + Image | 262K | 33K | — | — |
84
85
  | Gemma 4 31B IT | Text + Image | 262K | 33K | — | — |
package/models.json CHANGED
@@ -80,6 +80,23 @@
80
80
  "contextWindow": 1048576,
81
81
  "maxTokens": 0
82
82
  },
83
+ {
84
+ "id": "accounts/fireworks/models/deepseek-v4p1-flash",
85
+ "name": "DeepSeek V4.1 Flash",
86
+ "reasoning": false,
87
+ "input": [
88
+ "text",
89
+ "image"
90
+ ],
91
+ "cost": {
92
+ "input": 0,
93
+ "output": 0,
94
+ "cacheRead": 0,
95
+ "cacheWrite": 0
96
+ },
97
+ "contextWindow": 1048576,
98
+ "maxTokens": 0
99
+ },
83
100
  {
84
101
  "id": "accounts/fireworks/models/deepseek-v4-pro",
85
102
  "name": "DeepSeek-V4-Pro",
package/package.json CHANGED
@@ -1,18 +1,9 @@
1
1
  {
2
2
  "name": "pi-fireworks-provider",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "Fireworks AI provider extension for pi - Access Kimi, MiniMax, GLM, DeepSeek, and GPT-OSS models through the Fireworks AI API",
5
5
  "type": "module",
6
6
  "main": "index.ts",
7
- "scripts": {
8
- "clean": "echo 'nothing to clean'",
9
- "build": "echo 'nothing to build'",
10
- "check": "tsc --noEmit && vitest run && knip --no-gitignore",
11
- "lint:dead": "knip --no-gitignore",
12
- "test": "vitest run",
13
- "test:watch": "vitest",
14
- "update-models": "node scripts/update-models.js"
15
- },
16
7
  "keywords": [
17
8
  "pi",
18
9
  "extension",
@@ -48,5 +39,14 @@
48
39
  "extensions": [
49
40
  "./index.ts"
50
41
  ]
42
+ },
43
+ "scripts": {
44
+ "clean": "echo 'nothing to clean'",
45
+ "build": "echo 'nothing to build'",
46
+ "check": "tsc --noEmit && vitest run && knip --no-gitignore",
47
+ "lint:dead": "knip --no-gitignore",
48
+ "test": "vitest run",
49
+ "test:watch": "vitest",
50
+ "update-models": "node scripts/update-models.js"
51
51
  }
52
- }
52
+ }