pi-hypercharm-provider 1.1.1 → 1.1.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/index.ts CHANGED
@@ -178,7 +178,7 @@ function buildModels(base: JsonModel[], custom: JsonModel[], patch: PatchData):
178
178
  }
179
179
  if (!model.thinkingLevelMap) {
180
180
  model.thinkingLevelMap = {
181
- minimal: null, low: null, medium: null, high: "high", xhigh: "max", max: "max",
181
+ minimal: null, low: null, medium: null, high: "high", max: "max",
182
182
  };
183
183
  }
184
184
  }
package/models.json CHANGED
@@ -19,7 +19,6 @@
19
19
  "low": null,
20
20
  "medium": null,
21
21
  "high": "high",
22
- "xhigh": "max",
23
22
  "max": "max"
24
23
  },
25
24
  "compat": {
@@ -51,7 +50,6 @@
51
50
  "low": null,
52
51
  "medium": null,
53
52
  "high": "high",
54
- "xhigh": "max",
55
53
  "max": "max"
56
54
  },
57
55
  "compat": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-hypercharm-provider",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "HyperCharm provider extension for pi - Access DeepSeek, GLM, Kimi, Qwen, MiniMax, Gemma, and GPT-OSS models through the Charm Hyper API",
5
5
  "type": "module",
6
6
  "main": "index.ts",
package/patch.json CHANGED
@@ -6,7 +6,6 @@
6
6
  "low": null,
7
7
  "medium": null,
8
8
  "high": "high",
9
- "xhigh": "max",
10
9
  "max": "max"
11
10
  },
12
11
  "compat": {
@@ -25,7 +24,6 @@
25
24
  "low": null,
26
25
  "medium": null,
27
26
  "high": "high",
28
- "xhigh": "max",
29
27
  "max": "max"
30
28
  },
31
29
  "compat": {
@@ -174,7 +174,7 @@ function transformModel(apiModel, existingModelsMap) {
174
174
  if (isDeepSeek && isReasoning) {
175
175
  model.maxTokens = 384000;
176
176
  model.thinkingLevelMap = {
177
- minimal: null, low: null, medium: null, high: 'high', xhigh: 'max',
177
+ minimal: null, low: null, medium: null, high: 'high', max: 'max',
178
178
  };
179
179
  model.compat = {
180
180
  thinkingFormat: 'deepseek',