From efc83370204c6f1f32e16403ac37df183a2da60f Mon Sep 17 00:00:00 2001 From: Sabiha Khan Date: Thu, 13 Nov 2025 09:52:38 +0530 Subject: [PATCH] fix: Silero VAD model download --- api/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/Dockerfile b/api/Dockerfile index 1674a56..e8a5f61 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -21,6 +21,8 @@ RUN pip install --user --no-cache-dir -r requirements.txt && \ # Copy and install pipecat from local submodule COPY pipecat /tmp/pipecat RUN pip install --user --no-cache-dir '/tmp/pipecat[cartesia,deepgram,openai,elevenlabs,groq,google,azure,soundfile,silero,webrtc]' && \ + # Force Silero VAD model download during build + python -c "from pipecat.audio.vad.silero import SileroVADAnalyzer; SileroVADAnalyzer()" && \ # Clean up pip cache and temporary pipecat directory rm -rf /root/.cache/pip /tmp/pipecat