From 824d43f16e012ca79cc6af9fbcd8c7925bedef27 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 14 Oct 2025 10:57:39 -0700 Subject: [PATCH] Update radio.py --- modules/radio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/radio.py b/modules/radio.py index 25bd3cb..e8753da 100644 --- a/modules/radio.py +++ b/modules/radio.py @@ -25,7 +25,7 @@ if voxDetectionEnabled: import sounddevice as sd # pip install sounddevice sudo apt install portaudio19-dev from vosk import Model, KaldiRecognizer # pip install vosk import json - q = asyncio.Queue(maxsize=50) # queue for audio data + q = asyncio.Queue(maxsize=16) # queue for audio data if useLocalVoxModel: voxModel = Model(lang=localVoxModelPath) # use built in model for specified language