dsh-voice-mode 0.1.0 → 0.1.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/README.en.md +4 -4
- package/README.md +4 -4
- package/package.json +2 -2
package/README.en.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# dsh-voice-mode
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/dsh-voice-mode)
|
|
4
|
-
[](https://github.com/qishuilalala/dsh-voice-mode/blob/main/plugin/dsh-voice-mode/LICENSE)
|
|
5
|
+
[](https://github.com/topics/dsh-plugin)
|
|
6
6
|
|
|
7
7
|
> Full-duplex voice conversation mode for DeepSeek Harness (dsh): speak, get a
|
|
8
8
|
> spoken answer. Streamed zipformer2 ASR → editable draft → auto send → the
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
>
|
|
12
12
|
> 中文说明见 [README.md](./README.md)。
|
|
13
13
|
|
|
14
|
-

|
|
14
|
+

|
|
15
15
|
|
|
16
16
|
## Features
|
|
17
17
|
|
|
@@ -164,7 +164,7 @@ You can also edit the `voice-mode:` section of `~/.dsh/settings.yaml` directly (
|
|
|
164
164
|
|
|
165
165
|
## How it works
|
|
166
166
|
|
|
167
|
-

|
|
167
|
+

|
|
168
168
|
|
|
169
169
|
```
|
|
170
170
|
input: mic ──RMS VAD (2s silence split)──▶ POST /voice-mode/asr (f32 PCM, 16k, incremental)
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# dsh-voice-mode
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/dsh-voice-mode)
|
|
4
|
-
[](https://github.com/qishuilalala/dsh-voice-mode/blob/main/plugin/dsh-voice-mode/LICENSE)
|
|
5
|
+
[](https://github.com/topics/dsh-plugin)
|
|
6
6
|
|
|
7
7
|
> Full-duplex voice conversation mode for DeepSeek Harness (dsh): speak, get a
|
|
8
8
|
> spoken answer. Streamed zipformer2 ASR → editable draft → auto send → the
|
|
@@ -13,7 +13,7 @@ DeepSeek Harness 语音双工对话模式:会话内一键进入 → 边说边
|
|
|
13
13
|
|
|
14
14
|
[English](./README.en.md)
|
|
15
15
|
|
|
16
|
-

|
|
16
|
+

|
|
17
17
|
|
|
18
18
|
## 特性
|
|
19
19
|
|
|
@@ -167,7 +167,7 @@ npm run prefetch # 插件目录内执行;默认写到平台缓存目
|
|
|
167
167
|
|
|
168
168
|
## 工作原理
|
|
169
169
|
|
|
170
|
-

|
|
170
|
+

|
|
171
171
|
|
|
172
172
|
```
|
|
173
173
|
input: mic ──RMS VAD(2s 静音切句)──▶ POST /voice-mode/asr(f32 PCM,16k,增量解码)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-voice-mode",
|
|
3
3
|
"description": "Full-duplex voice conversation mode for DeepSeek Harness: streamed zipformer2 ASR to draft, Edge TTS sentence-by-sentence reading of final replies, voice barge-in · DSH 语音双工对话模式",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"repository": {
|
|
@@ -86,4 +86,4 @@
|
|
|
86
86
|
"access": "public"
|
|
87
87
|
},
|
|
88
88
|
"license": "MIT"
|
|
89
|
-
}
|
|
89
|
+
}
|