dshbase

插件目录 / Developer / dsh-voice-core

dsh-voice-core

未验证 Yihong89

✓ 持续维护 基于 2 个官方 DSH 包

查看 GitHub ↗ ← 返回插件目录

2Stars
0Forks
0未关闭 issue
语言
2026-08-17最近推送
跨平台平台

功能简介

voice engine, using Qwen TTS model

我们的评价
未验证 — 尚未实测

voice engine, using Qwen TTS model 尚未验证——请自行安装测试。

「未验证」表示我们的自动化 CI 尚未安装过该插件。功能描述与版本兼容性均为作者声明。这不是安全审计,也不代表对第三方代码的背书。

你是插件作者? 想拿到「已验证」标签——提交你自己的验证证据(截图、日志或短视频),我们审核通过后即改为「已验证」。

提交验证证据 ↗

README

dsh-voice-core

共享语音引擎(Shared Voice Engine)—— dsh-teacher 与 dsh-companion 的公共底层。

一个 library,不是独立插件:消费插件(dsh-teacher / dsh-companion)在自己的
apply() 里调用 applyVoice(ctx, config)(host 侧),client 侧通过
createVoiceClient(opts) 组合共享 UI。语音由 mac mini 上的 Qwen3-TTS
(VoiceDesign,MPS 加速)生成,浏览器播放——声音从使用者自己的机器出来。

提供的能力

Host(applyVoice(ctx, config)

  • Qwen3-TTS 代理路由:{ttsPath}(如 /dsh-teacher/tts)+ -health,转发到
    本地 TTS 服务(127.0.0.1:3091,可用 DSH_VOICE_TTS_URL 覆盖)
  • speak / cheer 模型工具(log-only voice/* 事件)
  • /speak /cheer /cheer-at /cheer-text /voice 命令
  • voiceSpeak 会话投影(fold voice/speak / voice/spoken / voice/cheer
  • 每日问候调度器:到点 agent.followup 让 Agent 自己生成"欢迎 + 趣闻/新闻"
    (或配置固定文案直接朗读);schedulerEnabled 控制开关
  • 音色配置驱动:config.styles(音色目录)+ config.defaultStyle

Client(createVoiceClient(opts)

  • 无内置 UI(不渲染任何图标/按钮)——只提供底层行为:自动朗读、音频播放、
    💛 cheer 卡片,配置/选择界面完全交给消费插件自己实现
  • 音频队列播放(fetch WAV → <audio>,顺序播放不重叠)
  • 自动朗读每条 assistant 回复(1s 先显示文字),带按会话持久化的
    localStorage cursor
    —— 切换会话/刷新页面不会重复朗读旧消息
  • preset 门控:只在该消费插件的 agent preset 会话里生效
  • opts.resolveInstruct(sessionId) 可选:按会话动态决定 TTS instruct(优先于 defaultStyle 的静态值),供需要"每个会话自己的音色"的消费者使用

配置示例

// dsh-teacher 的 apply()
import { applyVoice } from 'dsh-voice-core'

await applyVoice(ctx, {
  presetName: 'teacher',
  ttsPath: '/dsh-teacher/tts',
  styles: { onee: { label: '🎧 清冷御姐', instruct: '清冷柔和的成年女声…' } },
  defaultStyle: 'onee',
  schedulerEnabled: false,
})
// client 侧
import { createVoiceClient } from 'dsh-voice-core'

var voiceClient = createVoiceClient({
  presetName: 'teacher',
  ttsPath: '/dsh-teacher/tts',
  styles: { onee: { label: '🎧 清冷御姐', instruct: '…' } },
  defaultStyle: 'onee',
})
// 在 apply 里:voiceClient.apply(ctx)

安装

dsh plugin --profile web add github:Yihong89/dsh-voice-core

profile 的 cordis.patch.yml 注册事件:

- insert:
    - id: dsh-voice-registrar
      name: dsh-voice-core/register-events

pnpm 11 默认 blockExoticSubdeps: true,而 dsh-teacher/dsh-companion 把
dsh-voice-core 作为 git 子依赖。若报
ERR_PNPM_EXOTIC_SUBDEP,在 profile 的 pnpm-workspace.yaml
blockExoticSubdeps: false

测试

node --test test/*.test.js   # 49 tests

License

MIT

安装

🧩 让 Agent 自动装(推荐)

装一次目录插件,之后本站所有插件都能让 DeepSeek Harness 自动找、自动装:

dsh plugin add dshbase-catalog

然后对 agent 说「帮我装 dsh-voice-core」,它会在目录里找到并自动安装。文档:dshbase-catalog · 已验证场景包

该插件是 GitHub 源码(未发 npm)——直接从仓库装:

Web profile:

dsh plugin --profile web add github:Yihong89/dsh-voice-core

Headless(CLI)profile:

dsh plugin --profile headless add github:Yihong89/dsh-voice-core

实测报告

尚未 L3 验证——若已跑过,见下方失败备注。

状态:pending · 最近测试 2026-08-26
备注:验证: runtime-fail 浏览全部待验证失败 →
安全:尚未扫描——我们的每日静态扫描将很快覆盖它。

分享徽章

Developer 里更多

浏览全部 7789 个插件 →