@oh-my-pi/pi-ai 14.9.3 → 14.9.7
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 +3 -3
- package/src/model-thinking.ts +13 -1
- package/src/models.json +846 -151
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-ai",
|
|
4
|
-
"version": "14.9.
|
|
4
|
+
"version": "14.9.7",
|
|
5
5
|
"description": "Unified LLM API with automatic model discovery and provider configuration",
|
|
6
6
|
"homepage": "https://github.com/can1357/oh-my-pi",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"@aws-sdk/credential-provider-node": "^3.972.39",
|
|
47
47
|
"@bufbuild/protobuf": "^2.12.0",
|
|
48
48
|
"@google/genai": "^1.52.0",
|
|
49
|
-
"@oh-my-pi/pi-natives": "14.9.
|
|
50
|
-
"@oh-my-pi/pi-utils": "14.9.
|
|
49
|
+
"@oh-my-pi/pi-natives": "14.9.7",
|
|
50
|
+
"@oh-my-pi/pi-utils": "14.9.7",
|
|
51
51
|
"@sinclair/typebox": "^0.34.49",
|
|
52
52
|
"@smithy/node-http-handler": "^4.6.1",
|
|
53
53
|
"ajv": "^8.20.0",
|
package/src/model-thinking.ts
CHANGED
|
@@ -319,7 +319,7 @@ function applyGeneratedModelPolicy(model: ApiModel<Api>): void {
|
|
|
319
319
|
(model.provider === "minimax-code" || model.provider === "minimax-code-cn")
|
|
320
320
|
) {
|
|
321
321
|
model.compat = {
|
|
322
|
-
...model.compat,
|
|
322
|
+
...(model.compat ?? {}),
|
|
323
323
|
supportsStore: false,
|
|
324
324
|
supportsDeveloperRole: false,
|
|
325
325
|
supportsReasoningEffort: false,
|
|
@@ -327,6 +327,18 @@ function applyGeneratedModelPolicy(model: ApiModel<Api>): void {
|
|
|
327
327
|
};
|
|
328
328
|
delete model.compat.thinkingFormat;
|
|
329
329
|
}
|
|
330
|
+
if (
|
|
331
|
+
model.api === "openai-completions" &&
|
|
332
|
+
model.provider === "opencode-go" &&
|
|
333
|
+
(model.id === "deepseek-v4-flash" || model.id === "deepseek-v4-pro")
|
|
334
|
+
) {
|
|
335
|
+
model.compat = {
|
|
336
|
+
...(model.compat ?? {}),
|
|
337
|
+
supportsToolChoice: false,
|
|
338
|
+
reasoningContentField: "reasoning_content",
|
|
339
|
+
requiresReasoningContentForToolCalls: true,
|
|
340
|
+
};
|
|
341
|
+
}
|
|
330
342
|
const parsedModel = parseKnownModel(model.id);
|
|
331
343
|
const applyPatchToolType = inferGeneratedApplyPatchToolType(model, parsedModel);
|
|
332
344
|
if (applyPatchToolType) {
|