DeepSeek Harness 插件

voice-stt-dsh

Offline Parakeet voice input for DeepSeek Harness(英文原文)

跳到安装方式

来源信息

GitHub 仓库
vTRKA/voice-stt-dsh
最近更新
2026年8月17日
分类
工具与能力
GitHub stars
0
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/vTRKA/voice-stt-dsh
插件名:voice-stt-dsh
作者:vTRKA

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

Parakeet voice input for DeepSeek Harness

This plugin adds a local microphone button to the DeepSeek Harness composer. Audio stays on the user's computer. The plugin never sends a message by itself.

Quick start

1. Install and start DSH Desktop once. 2. Download this repository (or open its folder in PowerShell). 3. Run the installer:

``powershell .\install.ps1 ``

4. Install the model using [Install the model](#install-the-model). 5. Restart DSH Desktop. 6. The microphone button appears in the composer. You can click it, or press Ctrl+E once, to start recording. Press the same shortcut once more to stop. 7. Review the transcript in the draft and press Send.

You do not need to click the button before using the shortcut, and you do not need to hold either control. The shortcut calls the same local recording action as the button.

The installer uses the official dsh plugin command when it is available. DSH Desktop users normally do not have that command on PATH, so the same script falls back to the Desktop profile at $DSH_HOME/profiles/desktop, registers the bundle layer, and removes the conflicting built-in voice-input row. It does not write to the DSH application directory.

Shortcut

The default two-key shortcut is Ctrl+E on Windows/Linux and Command+E on macOS. Press it once to start recording and once again to finish.

Right-click the microphone to choose another shortcut. The new shortcut must include Ctrl, Alt, Shift, or Command, and is saved in the browser. You can also open Settings → Plugins → Parakeet Voice Input and change the shortcut there. That settings page is the recommended way to configure it; clicking the microphone is only for starting or stopping a recording.

Install the model

The Parakeet model runs offline. Audio stays on the computer. For safe installation, provide a trusted download URL and the model publisher's SHA-256 checksum:

.\install-model.ps1 `
  -Url 'https://huggingface.co/nvidia/parakeet-tdt-0.6b-v3/resolve/main/parakeet-tdt-0.6b-v3.q8_0.gguf?download=true' `
  -Sha256 '<64-character SHA-256 checksum>'

If the model is missing, DSH still starts normally and the microphone remains disabled. The installer verifies the checksum before replacing the active file.

How recording works

  • The first click starts the local companion and microphone capture.
  • The second click stops recording.
  • The offline model receives one local WAV file and returns the final transcript.
  • The transcript is inserted into the draft; sending remains a separate action.
  • The companion stops after recording ends or when the plugin unloads.

Offline models do not show interim words. The final transcript appears after the second click.

Update or remove

Update the installed plugin and then restart DSH:

dsh plugin --profile desktop update @local/dsh-parakeet-voice-input

The update preserves the model under $DSH_HOME/models. Remove the plugin with:

dsh plugin --profile desktop remove @local/dsh-parakeet-voice-input

If dsh is not on PATH, run install.ps1 again to update. To remove the Desktop installation cleanly, use:

corepack pnpm --dir "$env:USERPROFILE\.dsh\profiles\desktop" remove @local/dsh-parakeet-voice-input

Then remove the two Parakeet rows from that profile's cordis.patch.yml and restart DSH Desktop. The model file is kept so reinstalling does not require a new download; delete $DSH_HOME\models\parakeet-tdt-0.6b-v3 only if you also want to remove the offline model.

Troubleshooting

If the microphone stops immediately:

1. Restart DSH after installing or updating the plugin. 2. Check that the model exists under $DSH_HOME/models/parakeet-tdt-0.6b-v3. 3. Check the browser microphone permission. 4. Make sure port 8080 is not used by another process. 5. Click once, wait a second, and then speak.

If the button is missing after installation, restart DSH Desktop once more. The installer must have access to the Desktop profile; running pnpm add in this repository alone does not activate a DSH bundle.

If the button is visible but Ctrl+E does nothing, click inside the chat once so the WebView has focus, then press Ctrl+E. The listener is installed on the whole chat window and does not require the microphone button to be focused.

The microphone permission prompt is expected. The chat is rendered in a local browser/WebView, and browsers require explicit getUserMedia permission before any page can read a microphone. Audio is sent only to the local Parakeet service at 127.0.0.1; it is not uploaded to a speech API.

Requirements

  • DeepSeek Harness Web profile;
  • Windows x64 (the package includes a Windows companion);
  • a browser with microphone and Web Audio support.

Verify the package before publishing:

node scripts/verify-package.mjs