pi-wafer-provider 1.1.21 → 1.1.22
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/README.md +4 -2
- package/deprecated-models.json +0 -24
- package/models.json +50 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -76,11 +76,13 @@ pi
|
|
|
76
76
|
|
|
77
77
|
| Model | Type | Context | Max Output | Input Cost | Output Cost | Cached Input |
|
|
78
78
|
|-------|------|---------|------------|------------|-------------|--------------|
|
|
79
|
+
| DeepSeek V4 Pro | Text | 1M | 1M | — | — | — |
|
|
79
80
|
| DeepSeek-V4-Flash-0731-Fast | Text | 1M | 1M | $0.10 | $0.25 | $0.05 |
|
|
80
|
-
| DeepSeek-V4.1-Flash | Text + Image | 1M | 1M | $0.
|
|
81
|
+
| DeepSeek-V4.1-Flash | Text + Image | 1M | 1M | $0.20 | $0.60 | $0.01 |
|
|
82
|
+
| GLM-5.2 | Text | 1M | 1M | $1.40 | $4.40 | $0.26 |
|
|
81
83
|
| GLM-5.3 | Text | 1M | 1M | $1.19 | $4.40 | $0.26 |
|
|
82
84
|
| GLM-5.3-Flash | Text + Image | 1M | 1M | $0.10 | $0.35 | $0.02 |
|
|
83
|
-
| Kimi-K3 | Text + Image | 1M | 16K | $
|
|
85
|
+
| Kimi-K3 | Text + Image | 1M | 16K | $2.50 | $10.95 | $0.25 |
|
|
84
86
|
|
|
85
87
|
*Costs are per million tokens. Prices based on official provider pricing.*
|
|
86
88
|
|
package/deprecated-models.json
CHANGED
|
@@ -1,28 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"GLM-5.2": {
|
|
3
|
-
"id": "GLM-5.2",
|
|
4
|
-
"name": "GLM-5.2",
|
|
5
|
-
"reasoning": false,
|
|
6
|
-
"input": [
|
|
7
|
-
"text"
|
|
8
|
-
],
|
|
9
|
-
"cost": {
|
|
10
|
-
"input": 0,
|
|
11
|
-
"output": 0,
|
|
12
|
-
"cacheRead": 0,
|
|
13
|
-
"cacheWrite": 0
|
|
14
|
-
},
|
|
15
|
-
"contextWindow": 1048576,
|
|
16
|
-
"maxTokens": 16384,
|
|
17
|
-
"compat": {
|
|
18
|
-
"maxTokensField": "max_completion_tokens",
|
|
19
|
-
"supportsDeveloperRole": false,
|
|
20
|
-
"supportsStore": false,
|
|
21
|
-
"supportsZdr": true,
|
|
22
|
-
"supportsReasoningEffort": true
|
|
23
|
-
},
|
|
24
|
-
"deprecatedAt": "2026-09-07T02:00:27.566Z"
|
|
25
|
-
},
|
|
26
2
|
"Kimi-K2.6": {
|
|
27
3
|
"id": "Kimi-K2.6",
|
|
28
4
|
"name": "Kimi-K2.6",
|
package/models.json
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"id": "DeepSeek-V4-Pro",
|
|
4
|
+
"name": "DeepSeek V4 Pro",
|
|
5
|
+
"reasoning": false,
|
|
6
|
+
"input": [
|
|
7
|
+
"text"
|
|
8
|
+
],
|
|
9
|
+
"cost": {
|
|
10
|
+
"input": 0,
|
|
11
|
+
"output": 0,
|
|
12
|
+
"cacheRead": 0,
|
|
13
|
+
"cacheWrite": 0
|
|
14
|
+
},
|
|
15
|
+
"contextWindow": 1048576,
|
|
16
|
+
"maxTokens": 1048576,
|
|
17
|
+
"compat": {
|
|
18
|
+
"maxTokensField": "max_completion_tokens",
|
|
19
|
+
"supportsDeveloperRole": false,
|
|
20
|
+
"supportsStore": false,
|
|
21
|
+
"supportsZdr": true
|
|
22
|
+
}
|
|
23
|
+
},
|
|
2
24
|
{
|
|
3
25
|
"id": "DeepSeek-V4-Flash-0731-Fast",
|
|
4
26
|
"name": "DeepSeek-V4-Flash-0731-Fast",
|
|
@@ -31,8 +53,8 @@
|
|
|
31
53
|
"image"
|
|
32
54
|
],
|
|
33
55
|
"cost": {
|
|
34
|
-
"input": 0.
|
|
35
|
-
"output":
|
|
56
|
+
"input": 0.2,
|
|
57
|
+
"output": 0.6,
|
|
36
58
|
"cacheRead": 0.01,
|
|
37
59
|
"cacheWrite": 0
|
|
38
60
|
},
|
|
@@ -46,6 +68,29 @@
|
|
|
46
68
|
"supportsReasoningEffort": true
|
|
47
69
|
}
|
|
48
70
|
},
|
|
71
|
+
{
|
|
72
|
+
"id": "GLM-5.2",
|
|
73
|
+
"name": "GLM-5.2",
|
|
74
|
+
"reasoning": true,
|
|
75
|
+
"input": [
|
|
76
|
+
"text"
|
|
77
|
+
],
|
|
78
|
+
"cost": {
|
|
79
|
+
"input": 1.4,
|
|
80
|
+
"output": 4.4,
|
|
81
|
+
"cacheRead": 0.26,
|
|
82
|
+
"cacheWrite": 0
|
|
83
|
+
},
|
|
84
|
+
"contextWindow": 1048576,
|
|
85
|
+
"maxTokens": 1048576,
|
|
86
|
+
"compat": {
|
|
87
|
+
"maxTokensField": "max_completion_tokens",
|
|
88
|
+
"supportsDeveloperRole": false,
|
|
89
|
+
"supportsStore": false,
|
|
90
|
+
"supportsZdr": true,
|
|
91
|
+
"supportsReasoningEffort": true
|
|
92
|
+
}
|
|
93
|
+
},
|
|
49
94
|
{
|
|
50
95
|
"id": "GLM-5.3",
|
|
51
96
|
"name": "GLM-5.3",
|
|
@@ -102,9 +147,9 @@
|
|
|
102
147
|
"image"
|
|
103
148
|
],
|
|
104
149
|
"cost": {
|
|
105
|
-
"input":
|
|
106
|
-
"output":
|
|
107
|
-
"cacheRead": 0.
|
|
150
|
+
"input": 2.5,
|
|
151
|
+
"output": 10.95,
|
|
152
|
+
"cacheRead": 0.25,
|
|
108
153
|
"cacheWrite": 0
|
|
109
154
|
},
|
|
110
155
|
"contextWindow": 1048576,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-wafer-provider",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.22",
|
|
4
4
|
"description": "Wafer Serverless provider extension for pi - Access Qwen3.5-397B-A17B, GLM-5.1, Kimi K2.6, and DeepSeek-V4 through the Wafer Serverless API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|