@aliou/pi-neuralwatt 0.11.3 → 0.11.4
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.
|
@@ -114,6 +114,14 @@ const FAMILIES: [NeuralwattModelFamily, NeuralwattVariantSpec[]][] = [
|
|
|
114
114
|
maxOutputTokens: 65536,
|
|
115
115
|
reasoning: true,
|
|
116
116
|
},
|
|
117
|
+
{
|
|
118
|
+
id: "deepseek-v4-flash-flex",
|
|
119
|
+
name: "DeepSeek V4 Flash (flex)",
|
|
120
|
+
contextWindow: 1048560,
|
|
121
|
+
maxOutputTokens: 65536,
|
|
122
|
+
reasoning: true,
|
|
123
|
+
costMultiplier: FLEX_COST_MULTIPLIER,
|
|
124
|
+
},
|
|
117
125
|
],
|
|
118
126
|
],
|
|
119
127
|
[
|
|
@@ -215,11 +223,13 @@ const FAMILIES: [NeuralwattModelFamily, NeuralwattVariantSpec[]][] = [
|
|
|
215
223
|
reasoning: true,
|
|
216
224
|
},
|
|
217
225
|
{
|
|
226
|
+
// K2.7 Code cannot disable thinking; the -fast variant caps the
|
|
227
|
+
// reasoning budget (~64 tokens) rather than turning it off.
|
|
218
228
|
id: "kimi-k2.7-code-fast",
|
|
219
229
|
name: "Kimi K2.7 Code Fast",
|
|
220
230
|
contextWindow: 262128,
|
|
221
231
|
maxOutputTokens: null,
|
|
222
|
-
reasoning:
|
|
232
|
+
reasoning: true,
|
|
223
233
|
},
|
|
224
234
|
{
|
|
225
235
|
id: "kimi-k2.7-code-flex",
|