@goodandready/dsh-voice 0.8.29 → 0.8.30

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/lib/index.js +2 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -33,6 +33,7 @@ function isAutoLang(lang) {
33
33
  }
34
34
 
35
35
  export const name = '@goodandready/dsh-voice'
36
+ export const NS = 'dsh-voice'
36
37
  export const inject = ['tools', 'credentials', 'webServer', 'shell', 'settings', 'llm']
37
38
 
38
39
  const ChainEntry = z.object({
@@ -182,7 +183,7 @@ export function apply(ctx, baseConfig) {
182
183
  const live = () => Config(structuredClone(getConfig() ?? {})) ?? baseConfig
183
184
 
184
185
  ctx.inject(['settings'], (sctx) => {
185
- const scope = sctx.settings.register(name, Config, { base: baseConfig })
186
+ const scope = sctx.settings.register(NS, Config, { base: baseConfig })
186
187
  getConfig = () => scope.get() ?? baseConfig
187
188
  sctx.effect(() => () => { getConfig = () => baseConfig })
188
189
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-voice",
3
- "version": "0.8.29",
3
+ "version": "0.8.30",
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",