@aliou/pi-neuralwatt 0.6.2 → 0.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.
package/package.json
CHANGED
|
@@ -84,12 +84,15 @@ export const NEURALWATT_MODELS: ProviderModelConfig[] = [
|
|
|
84
84
|
},
|
|
85
85
|
contextWindow: 1048560,
|
|
86
86
|
maxTokens: 65536,
|
|
87
|
+
// GLM-5.2 has two native reasoning depths (high, max) plus thinking-off.
|
|
88
|
+
// Pi levels below high disable thinking; high -> high, xhigh -> max.
|
|
89
|
+
// See https://portal.neuralwatt.com/docs/api/chat-completions#reasoning-effort
|
|
87
90
|
thinkingLevelMap: {
|
|
88
|
-
minimal:
|
|
89
|
-
low:
|
|
90
|
-
medium:
|
|
91
|
+
minimal: null,
|
|
92
|
+
low: null,
|
|
93
|
+
medium: null,
|
|
91
94
|
high: "high",
|
|
92
|
-
xhigh:
|
|
95
|
+
xhigh: "max",
|
|
93
96
|
},
|
|
94
97
|
compat: {
|
|
95
98
|
supportsDeveloperRole: false,
|
|
@@ -264,7 +267,7 @@ export const NEURALWATT_MODELS: ProviderModelConfig[] = [
|
|
|
264
267
|
},
|
|
265
268
|
// Kimi K2.7 Code - MoonshotAI
|
|
266
269
|
{
|
|
267
|
-
id: "
|
|
270
|
+
id: "kimi-k2.7-code",
|
|
268
271
|
name: "Kimi K2.7 Code",
|
|
269
272
|
reasoning: true,
|
|
270
273
|
input: ["text", "image"],
|