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 +1 -1
- package/models.json +0 -2
- package/package.json +1 -1
- package/patch.json +0 -2
- package/scripts/update-models.js +1 -1
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",
|
|
181
|
+
minimal: null, low: null, medium: null, high: "high", max: "max",
|
|
182
182
|
};
|
|
183
183
|
}
|
|
184
184
|
}
|
package/models.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-hypercharm-provider",
|
|
3
|
-
"version": "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
package/scripts/update-models.js
CHANGED
|
@@ -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',
|
|
177
|
+
minimal: null, low: null, medium: null, high: 'high', max: 'max',
|
|
178
178
|
};
|
|
179
179
|
model.compat = {
|
|
180
180
|
thinkingFormat: 'deepseek',
|