dsh-model-organizer 0.3.0
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/LICENSE +21 -0
- package/README.md +168 -0
- package/cordis.patch.yml +6 -0
- package/lib/client.js +1516 -0
- package/lib/index.js +9 -0
- package/package.json +56 -0
package/lib/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* dsh-model-organizer host half.
|
|
3
|
+
* Pure UI plugin: the empty apply exists so the plugin appears in the host
|
|
4
|
+
* cordis loader / bundle list; the browser half ships via the package.json
|
|
5
|
+
* dsh.client declaration and the "./client" export.
|
|
6
|
+
*/
|
|
7
|
+
export const name = "model-organizer";
|
|
8
|
+
|
|
9
|
+
export function apply() {}
|
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-model-organizer",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "DSH 模型整理插件:输入框的模型下拉改为「供应商分组 + 模型二级折叠菜单」(含推理等级),并在模型设置页提供一个可拖拽的「供应商与模型顺序」浮窗。",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"default": "./lib/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./client": {
|
|
12
|
+
"default": "./lib/client.js"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"lib",
|
|
18
|
+
"cordis.patch.yml",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE"
|
|
21
|
+
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"dsh",
|
|
24
|
+
"dsh-plugin",
|
|
25
|
+
"deepseek-harness",
|
|
26
|
+
"model",
|
|
27
|
+
"model-selector",
|
|
28
|
+
"reasoning-effort",
|
|
29
|
+
"drag-and-drop"
|
|
30
|
+
],
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"author": "NimoXie",
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/NimoXie15/dsh-model-organizer.git"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/NimoXie15/dsh-model-organizer#readme",
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/NimoXie15/dsh-model-organizer/issues"
|
|
40
|
+
},
|
|
41
|
+
"dsh": {
|
|
42
|
+
"bundle": {
|
|
43
|
+
"patch": "./cordis.patch.yml"
|
|
44
|
+
},
|
|
45
|
+
"client": {
|
|
46
|
+
"platform": "web",
|
|
47
|
+
"inject": [
|
|
48
|
+
"@deepseek-ai/dsh-client-ui-settings-models",
|
|
49
|
+
"@deepseek-ai/dsh-client-ui-model-selection",
|
|
50
|
+
"@deepseek-ai/dsh-client-ui-settings",
|
|
51
|
+
"@deepseek-ai/dsh-client-locale",
|
|
52
|
+
"@deepseek-ai/dsh-api-remotes"
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|