pi-voicekit 0.1.1 → 0.1.2

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/README.md +6 -6
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # pi-voicekit
4
4
 
5
- > **Community continuation of [`codexstar69/pi-listen`](https://github.com/codexstar69/pi-listen)** (archived upstream, MIT).
5
+ > **Community continuation of [`codexstar69/pi-listen`](https://github.com/codexstar69/pi-listen)** (upstream, MIT — dormant since v7.2.2 in May 2026).
6
6
  > Not affiliated with the original author. Old name: `pi-listen`.
7
7
 
8
8
  <p align="center">
@@ -109,9 +109,9 @@ Toggle between Deepgram (cloud, live streaming) and Local (offline, batch mode).
109
109
 
110
110
  ### Models — browse, search, install
111
111
 
112
- <img src="https://raw.githubusercontent.com/CyFeng16/pi-voicekit/main/assets/settings-models.png" alt="Models tab — browse 19 models with accuracy/speed ratings" width="600" />
112
+ <img src="https://raw.githubusercontent.com/CyFeng16/pi-voicekit/main/assets/settings-models.png" alt="Models tab — browse 21 models with accuracy/speed ratings" width="600" />
113
113
 
114
- Browse 19 models from Parakeet, Whisper, Moonshine, SenseVoice, and GigaAM. Each model shows accuracy and speed ratings (●●●●○/●●●●○), fitness badges, and download status. Fuzzy search to find models fast. Press Enter to activate and download.
114
+ Browse 21 models from Parakeet, Whisper, Moonshine, SenseVoice, GigaAM, Paraformer, and Qwen3. Each model shows accuracy and speed ratings (●●●●○/●●●●○), fitness badges, and download status. Fuzzy search to find models fast. Press Enter to activate and download.
115
115
 
116
116
  ### Downloaded — manage installed models
117
117
 
@@ -189,7 +189,7 @@ in front):
189
189
 
190
190
  ## Local Models
191
191
 
192
- 19 models across 5 families. Sorted by quality — best models first.
192
+ 21 models across 7 families. Sorted by quality — best models first.
193
193
 
194
194
  ### Top picks
195
195
 
@@ -240,7 +240,7 @@ Models from [Handy](https://github.com/cjpais/handy) (`~/Library/Application Sup
240
240
  | Feature | Description |
241
241
  | -------------------------------- | ---------------------------------------------------------------------------------------- |
242
242
  | **Dual backend** | Deepgram (cloud, live streaming) or local models (offline, batch) — switch in settings |
243
- | **19 local models** | Parakeet, Whisper, Moonshine, SenseVoice, GigaAM — with accuracy/speed ratings |
243
+ | **21 local models** | Parakeet, Whisper, Moonshine, SenseVoice, GigaAM, Paraformer, Qwen3 — with accuracy/speed ratings |
244
244
  | **Unified settings panel** | One overlay panel for all configuration — `/voice-settings` |
245
245
  | **Device-aware recommendations** | Scores models against your hardware. Only best-in-class models get [recommended]. |
246
246
  | **Enterprise download pipeline** | Pre-checks (disk, network, permissions), live progress with speed/ETA, post-verification |
@@ -264,7 +264,7 @@ extensions/voice.ts Main extension — state machine, recording,
264
264
  extensions/voice/config.ts Config loading, saving, migration
265
265
  extensions/voice/onboarding.ts First-run wizard, language picker
266
266
  extensions/voice/deepgram.ts Deepgram URL builder, API key resolver
267
- extensions/voice/local.ts Model catalog (19 models), in-process transcription
267
+ extensions/voice/local.ts Model catalog (21 models), in-process transcription
268
268
  extensions/voice/device.ts Device profiling — RAM, GPU, CPU, container detection
269
269
  extensions/voice/model-download.ts Download manager — resume, progress, verification, Handy import
270
270
  extensions/voice/sherpa-engine.ts sherpa-onnx bindings — recognizer lifecycle, inference
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-voicekit",
3
- "version": "0.1.1",
4
- "description": "Voice in + voice out for Pi CLI — hold-to-talk STT (Deepgram or 19 offline models) plus TTS (Kitten Nano, Piper, Kokoro, or Deepgram Aura)",
3
+ "version": "0.1.2",
4
+ "description": "Voice in + voice out for Pi CLI — hold-to-talk STT (Deepgram streaming or 21 offline models) plus TTS (Kitten Nano, Piper, Kokoro, or Deepgram Aura)",
5
5
  "type": "module",
6
6
  "keywords": [
7
7
  "pi-package",
@@ -46,6 +46,8 @@
46
46
  "typecheck": "bunx tsc -p tsconfig.json",
47
47
  "test": "bun test",
48
48
  "check": "bun run typecheck && bun run test",
49
+ "format": "bunx prettier@3.3.3 --write \"**/*.{ts,json,yml,yaml}\"",
50
+ "format:check": "bunx prettier@3.3.3 --check \"**/*.{ts,json,yml,yaml}\"",
49
51
  "release:dry": "bun run check && bun publish --dry-run",
50
52
  "release": "bun run check && bun publish --access public"
51
53
  },