@goodandready/dsh-voice 0.7.0 → 0.7.1

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.
Files changed (2) hide show
  1. package/cordis.patch.yml +6 -2
  2. package/package.json +1 -1
package/cordis.patch.yml CHANGED
@@ -10,8 +10,12 @@
10
10
  #
11
11
  # - id: dsh-voice
12
12
  # config:
13
- # whisperBin: /opt/whisper.cpp/build/bin/whisper-server
14
- # whisperModel: /opt/whisper.cpp/models/ggml-medium-q8_0.bin
13
+ # whisperBin: /path/to/whisper-server
14
+ # whisperModel: /path/to/ggml-model.bin
15
+ #
16
+ # Both are absolute paths on the machine that runs the harness, and both are
17
+ # yours to fill in: the package cannot know where a whisper.cpp build and its
18
+ # model happen to live.
15
19
  #
16
20
  - insert:
17
21
  - id: dsh-voice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-voice",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Voice input for DeepSeek Harness: dictation chunked by pauses and voice messages, each with its own provider fallback chain (Deepgram, Groq, HuggingFace, local whisper.cpp, plus any OpenAI-compatible API of your own).",
5
5
  "license": "MIT",
6
6
  "type": "module",