dsh-vision-router 1.4.3 → 1.4.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/README.md +3 -3
- package/README.zh.md +3 -3
- package/lib/client.js +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</p>
|
|
16
16
|
|
|
17
17
|
<p align="center">
|
|
18
|
-
<a href="https://github.com/ysr666/dsh-vision-router/releases/tag/v1.4.
|
|
18
|
+
<a href="https://github.com/ysr666/dsh-vision-router/releases/tag/v1.4.4"><img src="https://img.shields.io/badge/release-v1.4.4-5B4CF0?style=flat-square" alt="Release v1.4.4" /></a>
|
|
19
19
|
<a href="tests"><img src="https://img.shields.io/badge/verified-257%20tests-2EA44F?style=flat-square" alt="Verified: 257 tests" /></a>
|
|
20
20
|
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-2EA44F?style=flat-square" alt="License: MIT" /></a>
|
|
21
21
|
<a href="package.json"><img src="https://img.shields.io/badge/Node.js-%3E%3D22-339933?style=flat-square&logo=nodedotjs&logoColor=white" alt="Node.js >=22" /></a>
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
<p align="center">💬 <strong>QQ community group: 1105463028</strong></p>
|
|
29
29
|
|
|
30
30
|
> [!WARNING]
|
|
31
|
-
> 📌 **Announcement (v1.4.
|
|
31
|
+
> 📌 **Announcement (v1.4.4)**
|
|
32
32
|
>
|
|
33
|
-
> **v1.4.
|
|
33
|
+
> **v1.4.4:** Fixes the blank DSH rc.6 plugin settings page by declaring the client services required by settingsScope.
|
|
34
34
|
|
|
35
35
|
<p align="center">
|
|
36
36
|
<img src="assets/vision-demo.gif" width="640" alt="Demo: paste an image, the agent locates the send button with vision_ground / vision_crop / vision_pixel_diff and answers with coordinates" />
|
package/README.zh.md
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</p>
|
|
16
16
|
|
|
17
17
|
<p align="center">
|
|
18
|
-
<a href="https://github.com/ysr666/dsh-vision-router/releases/tag/v1.4.
|
|
18
|
+
<a href="https://github.com/ysr666/dsh-vision-router/releases/tag/v1.4.4"><img src="https://img.shields.io/badge/release-v1.4.4-5B4CF0?style=flat-square" alt="Release v1.4.4" /></a>
|
|
19
19
|
<a href="tests"><img src="https://img.shields.io/badge/verified-257%20tests-2EA44F?style=flat-square" alt="Verified: 257 tests" /></a>
|
|
20
20
|
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-2EA44F?style=flat-square" alt="License: MIT" /></a>
|
|
21
21
|
<a href="package.json"><img src="https://img.shields.io/badge/Node.js-%3E%3D22-339933?style=flat-square&logo=nodedotjs&logoColor=white" alt="Node.js >=22" /></a>
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
<p align="center">💬 <strong>QQ 用户交流群:1105463028</strong></p>
|
|
29
29
|
|
|
30
30
|
> [!WARNING]
|
|
31
|
-
> 📌 **公告(v1.4.
|
|
31
|
+
> 📌 **公告(v1.4.4)**
|
|
32
32
|
>
|
|
33
|
-
> **v1.4.
|
|
33
|
+
> **v1.4.4:修复 DSH rc.6 插件配置页空白。**
|
|
34
34
|
|
|
35
35
|
<p align="center">
|
|
36
36
|
<img src="assets/vision-demo.gif" width="640" alt="演示:粘贴图片,Agent 用 vision_ground / vision_crop / vision_pixel_diff 定位发送按钮并给出坐标" />
|
package/lib/client.js
CHANGED
|
@@ -3149,7 +3149,7 @@ window.__ModuleLoader__.load({
|
|
|
3149
3149
|
}
|
|
3150
3150
|
|
|
3151
3151
|
exports.apply = apply
|
|
3152
|
-
exports.inject = ['settingsScope', 'slots', 'locale', 'sessions']
|
|
3152
|
+
exports.inject = ['settingsScope', 'slots', 'locale', 'sessions', 'connection', 'remote']
|
|
3153
3153
|
exports.unwrapModelsResult = unwrapModelsResult
|
|
3154
3154
|
exports.filterVisionBackendGroups = filterVisionBackendGroups
|
|
3155
3155
|
exports.collectFilteredVisionBackends = collectFilteredVisionBackends
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-vision-router",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "Eyes for text-only DeepSeek Harness agents: built-in free vision chain (no key) + pixel-level vision tools (Q&A, grounding, crop, pixel diff, colors, OCR, SVG trace, cutout, screenshots). One-command install, no Python, image turns work like ordinary tool-calling turns.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -76,11 +76,13 @@
|
|
|
76
76
|
"platform": "web",
|
|
77
77
|
"inject": [
|
|
78
78
|
"@deepseek-ai/dsh-client-ui-settings",
|
|
79
|
-
"@deepseek-ai/dsh-client-runtime"
|
|
79
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
80
|
+
"@deepseek-ai/dsh-client-connection",
|
|
81
|
+
"@deepseek-ai/dsh-api-remotes"
|
|
80
82
|
]
|
|
81
83
|
},
|
|
82
84
|
"bundle": {
|
|
83
85
|
"patch": "./cordis.patch.yml"
|
|
84
86
|
}
|
|
85
87
|
}
|
|
86
|
-
}
|
|
88
|
+
}
|