codebuddy-stats 1.3.0 → 1.3.2
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/dist/lib/pricing.js +39 -1
- package/package.json +1 -1
package/dist/lib/pricing.js
CHANGED
|
@@ -31,6 +31,24 @@ export const MODEL_PRICING = {
|
|
|
31
31
|
"gpt-5.1-codex-mini": createPricing(0.25, 0.025, 2.0),
|
|
32
32
|
"gpt-5-codex": createPricing(1.25, 0.125, 10.0),
|
|
33
33
|
// Claude 系列
|
|
34
|
+
"claude-opus-4.6": {
|
|
35
|
+
prompt: [
|
|
36
|
+
{ limit: 200_000, pricePerMTok: 5.0 },
|
|
37
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 10.0 },
|
|
38
|
+
],
|
|
39
|
+
completion: [
|
|
40
|
+
{ limit: 200_000, pricePerMTok: 25.0 },
|
|
41
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 37.5 },
|
|
42
|
+
],
|
|
43
|
+
cacheRead: [
|
|
44
|
+
{ limit: 200_000, pricePerMTok: 0.5 },
|
|
45
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 1.0 },
|
|
46
|
+
],
|
|
47
|
+
cacheWrite: [
|
|
48
|
+
{ limit: 200_000, pricePerMTok: 6.25 },
|
|
49
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 12.5 },
|
|
50
|
+
],
|
|
51
|
+
},
|
|
34
52
|
"claude-opus-4.5": createPricing(5.0, 0.5, 25.0, 10.0),
|
|
35
53
|
"claude-haiku-4.5": createPricing(1.0, 0.1, 5.0, 1.25),
|
|
36
54
|
"claude-4.5": {
|
|
@@ -127,12 +145,32 @@ export const MODEL_PRICING = {
|
|
|
127
145
|
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0.571 }, // 4元/M tokens
|
|
128
146
|
],
|
|
129
147
|
},
|
|
148
|
+
"glm-4.6v": {
|
|
149
|
+
prompt: [
|
|
150
|
+
{ limit: 32_000, pricePerMTok: 0.14 }, // 1元/M tokens
|
|
151
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0.28 }, // 2元/M tokens
|
|
152
|
+
],
|
|
153
|
+
completion: [
|
|
154
|
+
{ limit: 32_000, pricePerMTok: 0.43 }, // 3元/M tokens
|
|
155
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0.86 }, // 6元/M tokens
|
|
156
|
+
],
|
|
157
|
+
cacheRead: [
|
|
158
|
+
{ limit: 32_000, pricePerMTok: 0.03 }, // 0.2元/M tokens
|
|
159
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0.06 }, // 0.4元/M tokens
|
|
160
|
+
],
|
|
161
|
+
cacheWrite: [
|
|
162
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0 },
|
|
163
|
+
]
|
|
164
|
+
},
|
|
130
165
|
// DeepSeek 系列
|
|
131
|
-
"deepseek-v3.2": createPricing(0.29, 0.029, 0.43),
|
|
166
|
+
"deepseek-v3.2-volc": createPricing(0.29, 0.029, 0.43),
|
|
132
167
|
"deepseek-v3.1": createPricing(0.56, 0.056, 1.68),
|
|
168
|
+
"deepseek-v3-0324": createPricing(0.29, 0.029, 1.14),
|
|
133
169
|
// Kimi 系列
|
|
170
|
+
"kimi-k2.5": createPricing(0.58, 0.1, 3),
|
|
134
171
|
"kimi-k2-thinking": createPricing(0.6, 0.15, 2.5),
|
|
135
172
|
// iOA 免费模型
|
|
173
|
+
"kimi-k2.5-ioa": createPricing(0, 0, 0),
|
|
136
174
|
"glm-4.7-ioa": createPricing(0, 0, 0),
|
|
137
175
|
"glm-4.6-ioa": createPricing(0, 0, 0),
|
|
138
176
|
"glm-4.6v-ioa": createPricing(0, 0, 0),
|