pi-sophnet 1.0.1 → 1.0.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/extensions/index.ts +1 -0
- package/package.json +10 -4
package/extensions/index.ts
CHANGED
|
@@ -98,6 +98,7 @@ const SHARED_COMPAT = {
|
|
|
98
98
|
maxTokensField: "max_tokens" as const,
|
|
99
99
|
supportsReasoningEffort: true,
|
|
100
100
|
thinkingFormat: "deepseek" as const,
|
|
101
|
+
requiresReasoningContentOnAssistantMessages: true,
|
|
101
102
|
};
|
|
102
103
|
|
|
103
104
|
const DEEPSEEK_THINKING = { off: "disabled", minimal: null, low: "low", medium: "medium", high: "high", xhigh: "max" };
|
package/package.json
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-sophnet",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Sophnet provider extension for pi — register Sophnet models, display billing info in the status bar",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package"
|
|
7
|
+
],
|
|
6
8
|
"license": "MIT",
|
|
7
9
|
"author": "zisen",
|
|
8
10
|
"repository": {
|
|
@@ -10,9 +12,13 @@
|
|
|
10
12
|
"url": "https://github.com/zisen123/pi-sophnet"
|
|
11
13
|
},
|
|
12
14
|
"pi": {
|
|
13
|
-
"extensions": [
|
|
15
|
+
"extensions": [
|
|
16
|
+
"./extensions"
|
|
17
|
+
]
|
|
14
18
|
},
|
|
15
|
-
"files": [
|
|
19
|
+
"files": [
|
|
20
|
+
"extensions/"
|
|
21
|
+
],
|
|
16
22
|
"peerDependencies": {
|
|
17
23
|
"@earendil-works/pi-coding-agent": "*",
|
|
18
24
|
"typebox": "*"
|