mohith-das/dsh-voice-input-en0

dsh-voice-input-en

适用于 DeepSeek Harness Web UI 的极简纯英文语音输入插件

AI 分析

核心用途是利用浏览器原生 SpeechRecognition API,在输入框添加麦克风按钮进行实时英文语音转文字。适合需要纯英文免配置语音输入的用户。

包名
dsh-voice-input-en
版本
0.1.1
许可证
MIT
最近更新
2026年9月1日

安装

此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 README ↗

dsh-voice-input-en

npm version

Minimal, English-only voice input for the DeepSeek Harness Web UI.

Adds a mic button to the composer's tool row. Click it, speak, and the transcript streams into your message draft live via the browser's native SpeechRecognition API (Chrome / Edge). Click again (or the "Done" button) to stop.

Written from scratch, not derived from any third-party plugin, specifically to stay small enough to read end to end in one sitting:

  • client.js — the entire UI and speech-recognition logic (~230 lines, zero dependencies beyond react, which the host already provides).
  • lib/index.js — a no-op host-side stub required only so the loader mounts the client bundle.

No language picker, no localStorage, no auto-send, no text-to-speech, no subprocess execution, no network calls beyond whatever the browser's own speech backend makes on its own. Recognition language follows the browser's locale (navigator.language).

Install

Add it to your DSH web profile's dependencies:

dsh plugin --profile web add -w dsh-voice-input-en

Then insert it as a Loader entry via cordis.patch.yml (installing the dependency alone isn't enough — the loader only picks up packages that appear as a Loader entry):

# ~/.dsh/profiles/web/cordis.patch.yml
- insert:
    - id: dsh-voice-input-en
      name: 'dsh-voice-input-en'

Restart dsh web and refresh the page. For local development instead of the published npm package, point the dependency at a local path with "dsh-voice-input-en": "file:/absolute/path/to/dsh-voice-input-en".

Compatibility

  • Requires Chrome, Edge, or another browser that implements webkitSpeechRecognition. Firefox does not support the Web Speech API.
  • Must be served from localhost / 127.0.0.1 or HTTPS (browser security requirement).
  • Speech recognition requires network access — the browser calls its own underlying speech service to do the recognition.

License

MIT