@aliou/pi-neuralwatt 0.6.0 → 0.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aliou/pi-neuralwatt",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
@@ -70,6 +70,33 @@ export const NEURALWATT_MODELS: ProviderModelConfig[] = [
70
70
  maxTokensField: "max_tokens",
71
71
  },
72
72
  },
73
+ // GLM-5.2 - ZhipuAI (test canary)
74
+ {
75
+ id: "glm-5.2",
76
+ name: "GLM-5.2",
77
+ reasoning: true,
78
+ input: ["text"],
79
+ cost: {
80
+ input: 1.45,
81
+ output: 4.5,
82
+ cacheRead: 0,
83
+ cacheWrite: 0,
84
+ },
85
+ contextWindow: 1048560,
86
+ maxTokens: 65536,
87
+ thinkingLevelMap: {
88
+ minimal: "low",
89
+ low: "low",
90
+ medium: "medium",
91
+ high: "high",
92
+ xhigh: null,
93
+ },
94
+ compat: {
95
+ supportsDeveloperRole: false,
96
+ maxTokensField: "max_tokens",
97
+ requiresReasoningContentOnAssistantMessages: true,
98
+ },
99
+ },
73
100
  // Kimi K2.5 - MoonshotAI
74
101
  {
75
102
  id: "moonshotai/Kimi-K2.5",
@@ -250,6 +277,7 @@ export const NEURALWATT_MODELS: ProviderModelConfig[] = [
250
277
  contextWindow: 262128,
251
278
  maxTokens: 65536,
252
279
  thinkingLevelMap: {
280
+ off: null,
253
281
  minimal: null,
254
282
  low: null,
255
283
  medium: "medium",