You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(docker): default to multilingual whisper small for STT (#94)
The bundled whisper.cpp model was ggml-tiny.bin - technically
multilingual but effectively English-grade, so German/Spanish voice
notes transcribed poorly. The image now ships ggml-small.bin (466 MB),
the multilingual small variant, which gives usable DE/EN/ES quality
with no code changes (WHISPER_MODEL build arg default bumped, both
compose configs and docs updated to match). Verified: whisper stage
builds, model downloads, whisper-cli runs.
Copy file name to clipboardExpand all lines: docs/TELEGRAM.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -394,7 +394,7 @@ Voice message received → DownloadVoice (OGG Opus to disk)
394
394
395
395
**Fallback:** If auto-transcribe fails (ffmpeg unavailable, corrupt audio, whisper error), the agent receives the file path with a suggestion to use the `transcribe()` tool manually.
396
396
397
-
**Docker:** the official image bundles the whisper.cpp CLI, the `tiny`model, and ffmpeg, with `auto_transcribe` enabled in the shipped configs — so voice transcription works out of the box with no host install. See [../docker/README.md](../docker/README.md#voice-transcription-out-of-the-box).
397
+
**Docker:** the official image bundles the whisper.cpp CLI, the `small` (multilingual) model, and ffmpeg, with `auto_transcribe` enabled in the shipped configs — so voice transcription works out of the box with no host install, at usable German/English/Spanish quality. See [../docker/README.md](../docker/README.md#voice-transcription-out-of-the-box).
0 commit comments