dsh-voice-mode 0.7.5 → 0.7.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/lib/client.js +1 -1
- package/package.json +9 -8
package/lib/client.js
CHANGED
|
@@ -2484,7 +2484,7 @@ var TELEMETRY_VIEW = [
|
|
|
2484
2484
|
{ stage: "first-tts-chunk", key: "telFirstChunk" },
|
|
2485
2485
|
{ stage: "first-audio-played", key: "telFirstPlayed" }
|
|
2486
2486
|
];
|
|
2487
|
-
var BUILD_TAG = "
|
|
2487
|
+
var BUILD_TAG = "2fc4e49";
|
|
2488
2488
|
var TELEMETRY_FLAG = "dsh-voice-mode.telemetry";
|
|
2489
2489
|
var telemetryEnabled = typeof localStorage !== "undefined" && localStorage.getItem(TELEMETRY_FLAG) === "1";
|
|
2490
2490
|
console.log("[dsh-voice] build=" + BUILD_TAG);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-voice-mode",
|
|
3
|
-
"description": "Full-duplex voice plugin for DeepSeek Harness: local zipformer2 streaming ASR (no API key) → editable draft; Edge TTS or local VITS / Kokoro read-aloud with live captions; true barge-in; hardened HTTP surface + model SHA256 pinning; compatible with dsh 0.1.1 → 0.1.2. · DSH 语音双工插件:流式识别入草稿、按句朗读+实时字幕、开口即打断;免 API Key
|
|
4
|
-
"version": "0.7.
|
|
3
|
+
"description": "Full-duplex voice plugin for DeepSeek Harness: local zipformer2 streaming ASR (no API key) → editable draft; Edge TTS or local VITS / Kokoro read-aloud with live captions; true barge-in; hardened HTTP surface + model SHA256 pinning; compatible with all dsh releases since 0.1.1-rc.2 (verified 0.1.1 → 0.1.5-rc.2). · DSH 语音双工插件:流式识别入草稿、按句朗读+实时字幕、开口即打断;免 API Key、安全加固、全版本兼容(0.1.1-rc.2 起,含 0.1.5-rc.2 端到端验证)。",
|
|
4
|
+
"version": "0.7.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"repository": {
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"url": "https://github.com/qishuilalala/dsh-voice-mode/issues"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
|
-
"node": ">=18.0.0"
|
|
16
|
+
"node": ">=18.0.0",
|
|
17
|
+
"dsh": ">=0.1.1-rc.2"
|
|
17
18
|
},
|
|
18
19
|
"exports": {
|
|
19
20
|
".": "./lib/index.js",
|
|
@@ -85,11 +86,11 @@
|
|
|
85
86
|
"react": "^18.2.0"
|
|
86
87
|
},
|
|
87
88
|
"devDependencies": {
|
|
88
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
89
|
-
"@deepseek-ai/dsh-host-webserver": "0.1.
|
|
90
|
-
"@deepseek-ai/dsh-llm": "0.1.
|
|
91
|
-
"@deepseek-ai/dsh-settings": "0.1.
|
|
92
|
-
"@deepseek-ai/dsh-system-prompt": "0.1.
|
|
89
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
90
|
+
"@deepseek-ai/dsh-host-webserver": "0.1.5-rc.1",
|
|
91
|
+
"@deepseek-ai/dsh-llm": "0.1.5-rc.1",
|
|
92
|
+
"@deepseek-ai/dsh-settings": "0.1.5-rc.1",
|
|
93
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.5-rc.1",
|
|
93
94
|
"@types/node": "^26.0.0",
|
|
94
95
|
"@types/react": "^19.0.0",
|
|
95
96
|
"esbuild": "^0.25.0",
|