@openclaw/deepseek-provider 2026.7.1-beta.2 → 2026.7.1-beta.4
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/dist/api.js +1 -1
- package/dist/{models-DCxTAfJ0.js → models-BP0TFm69.js} +1 -1
- package/dist/models.js +1 -1
- package/dist/onboard.js +1 -1
- package/dist/provider-catalog.js +1 -1
- package/dist/provider-policy-api.js +1 -1
- package/dist/stream.js +1 -1
- package/dist/thinking.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/openclaw.plugin.json +4 -0
- package/package.json +4 -4
package/dist/api.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as DEEPSEEK_MODEL_CATALOG, r as buildDeepSeekModelDefinition, t as DEEPSEEK_BASE_URL } from "./models-
|
|
1
|
+
import { n as DEEPSEEK_MODEL_CATALOG, r as buildDeepSeekModelDefinition, t as DEEPSEEK_BASE_URL } from "./models-BP0TFm69.js";
|
|
2
2
|
import { buildDeepSeekProvider } from "./provider-catalog.js";
|
|
3
3
|
import { createDeepSeekV4ThinkingWrapper } from "./stream.js";
|
|
4
4
|
export { DEEPSEEK_BASE_URL, DEEPSEEK_MODEL_CATALOG, buildDeepSeekModelDefinition, buildDeepSeekProvider, createDeepSeekV4ThinkingWrapper };
|
|
@@ -95,7 +95,7 @@ function buildDeepSeekModelDefinition(model) {
|
|
|
95
95
|
api: "openai-completions"
|
|
96
96
|
};
|
|
97
97
|
}
|
|
98
|
-
const DEEPSEEK_V4_MODEL_IDS = new Set(["deepseek-v4-flash", "deepseek-v4-pro"]);
|
|
98
|
+
const DEEPSEEK_V4_MODEL_IDS = /* @__PURE__ */ new Set(["deepseek-v4-flash", "deepseek-v4-pro"]);
|
|
99
99
|
function isDeepSeekV4ModelId(modelId) {
|
|
100
100
|
return DEEPSEEK_V4_MODEL_IDS.has(modelId.toLowerCase());
|
|
101
101
|
}
|
package/dist/models.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as isDeepSeekV4ModelRef, i as isDeepSeekV4ModelId, n as DEEPSEEK_MODEL_CATALOG, r as buildDeepSeekModelDefinition, t as DEEPSEEK_BASE_URL } from "./models-
|
|
1
|
+
import { a as isDeepSeekV4ModelRef, i as isDeepSeekV4ModelId, n as DEEPSEEK_MODEL_CATALOG, r as buildDeepSeekModelDefinition, t as DEEPSEEK_BASE_URL } from "./models-BP0TFm69.js";
|
|
2
2
|
export { DEEPSEEK_BASE_URL, DEEPSEEK_MODEL_CATALOG, buildDeepSeekModelDefinition, isDeepSeekV4ModelId, isDeepSeekV4ModelRef };
|
package/dist/onboard.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as DEEPSEEK_MODEL_CATALOG, r as buildDeepSeekModelDefinition, t as DEEPSEEK_BASE_URL } from "./models-
|
|
1
|
+
import { n as DEEPSEEK_MODEL_CATALOG, r as buildDeepSeekModelDefinition, t as DEEPSEEK_BASE_URL } from "./models-BP0TFm69.js";
|
|
2
2
|
import "./api.js";
|
|
3
3
|
import { applyAgentDefaultModelPrimary, applyProviderConfigWithModelCatalog } from "openclaw/plugin-sdk/provider-onboard";
|
|
4
4
|
//#region extensions/deepseek/onboard.ts
|
package/dist/provider-catalog.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as DEEPSEEK_MODEL_CATALOG, r as buildDeepSeekModelDefinition, t as DEEPSEEK_BASE_URL } from "./models-
|
|
1
|
+
import { n as DEEPSEEK_MODEL_CATALOG, r as buildDeepSeekModelDefinition, t as DEEPSEEK_BASE_URL } from "./models-BP0TFm69.js";
|
|
2
2
|
//#region extensions/deepseek/provider-catalog.ts
|
|
3
3
|
function buildDeepSeekProvider() {
|
|
4
4
|
return {
|
package/dist/stream.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as isDeepSeekV4ModelRef } from "./models-
|
|
1
|
+
import { a as isDeepSeekV4ModelRef } from "./models-BP0TFm69.js";
|
|
2
2
|
import { createDeepSeekV4OpenAICompatibleThinkingWrapper } from "openclaw/plugin-sdk/provider-stream-shared";
|
|
3
3
|
//#region extensions/deepseek/stream.ts
|
|
4
4
|
function createDeepSeekV4ThinkingWrapper(baseStreamFn, thinkingLevel) {
|
package/dist/thinking.js
CHANGED
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/deepseek-provider",
|
|
3
|
-
"version": "2026.7.1-beta.
|
|
3
|
+
"version": "2026.7.1-beta.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/deepseek-provider",
|
|
9
|
-
"version": "2026.7.1-beta.
|
|
9
|
+
"version": "2026.7.1-beta.4"
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
}
|
package/openclaw.plugin.json
CHANGED
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
"enabledByDefault": true,
|
|
8
8
|
"providerCatalogEntry": "./provider-discovery.ts",
|
|
9
9
|
"providers": ["deepseek"],
|
|
10
|
+
"contracts": {
|
|
11
|
+
"usageProviders": ["deepseek"]
|
|
12
|
+
},
|
|
10
13
|
"providerEndpoints": [
|
|
11
14
|
{
|
|
12
15
|
"endpointClass": "deepseek-native",
|
|
@@ -120,6 +123,7 @@
|
|
|
120
123
|
"provider": "deepseek",
|
|
121
124
|
"method": "api-key",
|
|
122
125
|
"choiceId": "deepseek-api-key",
|
|
126
|
+
"appGuidedSecret": true,
|
|
123
127
|
"choiceLabel": "DeepSeek API key",
|
|
124
128
|
"groupId": "deepseek",
|
|
125
129
|
"groupLabel": "DeepSeek",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/deepseek-provider",
|
|
3
|
-
"version": "2026.7.1-beta.
|
|
3
|
+
"version": "2026.7.1-beta.4",
|
|
4
4
|
"description": "OpenClaw DeepSeek provider plugin.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"minHostVersion": ">=2026.6.8"
|
|
19
19
|
},
|
|
20
20
|
"compat": {
|
|
21
|
-
"pluginApi": ">=2026.7.1-beta.
|
|
21
|
+
"pluginApi": ">=2026.7.1-beta.4"
|
|
22
22
|
},
|
|
23
23
|
"build": {
|
|
24
|
-
"openclawVersion": "2026.7.1-beta.
|
|
24
|
+
"openclawVersion": "2026.7.1-beta.4",
|
|
25
25
|
"bundledDist": false
|
|
26
26
|
},
|
|
27
27
|
"release": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"README.md"
|
|
40
40
|
],
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"openclaw": ">=2026.7.1-beta.
|
|
42
|
+
"openclaw": ">=2026.7.1-beta.4"
|
|
43
43
|
},
|
|
44
44
|
"peerDependenciesMeta": {
|
|
45
45
|
"openclaw": {
|