dsh-audiogen 0.1.0 → 0.2.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/README.md +10 -1
- package/lib/client.js +318 -264
- package/lib/client.js.map +1 -1
- package/lib/index.js +251 -43
- package/package.json +1 -1
- package/src/audio-engine.ts +46 -22
- package/src/audio-models.ts +129 -0
- package/src/audio-presets.ts +24 -15
- package/src/client/AudioGenPanel.tsx +11 -7
- package/src/client/SettingsCard.tsx +52 -5
- package/src/client/channels-form.ts +5 -1
- package/src/client/locales.ts +2 -2
- package/src/client/settings-scope.ts +10 -4
- package/src/protocol.ts +22 -1
- package/src/routes.ts +28 -1
package/README.md
CHANGED
|
@@ -15,9 +15,18 @@ DeepSeek Harness(DSH)AI 音频插件:让 Agent 不只会回答,还能生
|
|
|
15
15
|
|
|
16
16
|
## 安装
|
|
17
17
|
|
|
18
|
+
已发布到 npm:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
dsh plugin --profile web add dsh-audiogen
|
|
22
|
+
# 或指定版本
|
|
23
|
+
dsh plugin --profile web add dsh-audiogen@0.1.0
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
本地开发安装:
|
|
27
|
+
|
|
18
28
|
```bash
|
|
19
29
|
dsh plugin --profile web add /path/to/dsh-audiogen
|
|
20
|
-
# 或从本地构建后的 tarball / npm 安装
|
|
21
30
|
```
|
|
22
31
|
|
|
23
32
|
安装后重启 `dsh web`,侧边栏出现「AI 音频」。打开「设置 → 插件 → AI 音频」,添加一个厂商渠道并填写 API 地址、密钥、模型/音色后即可使用。
|