Whisper (STT)
Overview
Section titled “Overview”Faster-Whisper provides local speech-to-text (STT) capabilities for our voice assistant. It is optimized for CPU performance, allowing near real-time transcription on our homelab server.
| Service | Port | Protocol | Description |
|---|---|---|---|
| Wyoming | 10300 | TCP | Wyoming protocol endpoint |
Configuration
Section titled “Configuration”The service is configured in modules/nixos/services/whisper.nix using the tiny model for maximum speed on the host CPU.
services.wyoming.faster-whisper.servers."es" = { enable = true; model = "tiny"; language = "es"; uri = "tcp://127.0.0.1:10300"; device = "cpu";};Troubleshooting
Section titled “Troubleshooting”Restarting the service
Section titled “Restarting the service”sudo systemctl restart faster-whisper-esChecking Logs
Section titled “Checking Logs”sudo journalctl -u faster-whisper-es -f