codebuddy-stats 1.3.0 → 1.3.1
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 +21 -1
- package/package.json +1 -1
package/dist/lib/pricing.js
CHANGED
|
@@ -127,12 +127,32 @@ export const MODEL_PRICING = {
|
|
|
127
127
|
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0.571 }, // 4元/M tokens
|
|
128
128
|
],
|
|
129
129
|
},
|
|
130
|
+
"glm-4.6v": {
|
|
131
|
+
prompt: [
|
|
132
|
+
{ limit: 32_000, pricePerMTok: 0.14 }, // 1元/M tokens
|
|
133
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0.28 }, // 2元/M tokens
|
|
134
|
+
],
|
|
135
|
+
completion: [
|
|
136
|
+
{ limit: 32_000, pricePerMTok: 0.43 }, // 3元/M tokens
|
|
137
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0.86 }, // 6元/M tokens
|
|
138
|
+
],
|
|
139
|
+
cacheRead: [
|
|
140
|
+
{ limit: 32_000, pricePerMTok: 0.03 }, // 0.2元/M tokens
|
|
141
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0.06 }, // 0.4元/M tokens
|
|
142
|
+
],
|
|
143
|
+
cacheWrite: [
|
|
144
|
+
{ limit: Number.POSITIVE_INFINITY, pricePerMTok: 0 },
|
|
145
|
+
]
|
|
146
|
+
},
|
|
130
147
|
// DeepSeek 系列
|
|
131
|
-
"deepseek-v3.2": createPricing(0.29, 0.029, 0.43),
|
|
148
|
+
"deepseek-v3.2-volc": createPricing(0.29, 0.029, 0.43),
|
|
132
149
|
"deepseek-v3.1": createPricing(0.56, 0.056, 1.68),
|
|
150
|
+
"deepseek-v3-0324": createPricing(0.29, 0.029, 1.14),
|
|
133
151
|
// Kimi 系列
|
|
152
|
+
"kimi-k2.5": createPricing(0.58, 0.1, 3),
|
|
134
153
|
"kimi-k2-thinking": createPricing(0.6, 0.15, 2.5),
|
|
135
154
|
// iOA 免费模型
|
|
155
|
+
"kimi-k2.5-ioa": createPricing(0, 0, 0),
|
|
136
156
|
"glm-4.7-ioa": createPricing(0, 0, 0),
|
|
137
157
|
"glm-4.6-ioa": createPricing(0, 0, 0),
|
|
138
158
|
"glm-4.6v-ioa": createPricing(0, 0, 0),
|