From d2bbda1e4ac1f82f3115a62f8691c72441672eea Mon Sep 17 00:00:00 2001 From: streamer45 Date: Thu, 1 Jan 2026 11:23:16 +0100 Subject: [PATCH] fix(docker): update whisper model in demo image --- Dockerfile.demo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.demo b/Dockerfile.demo index c174b820..ccd4f9d9 100644 --- a/Dockerfile.demo +++ b/Dockerfile.demo @@ -497,9 +497,9 @@ COPY --chown=app:app samples/audio/system/*.opus samples/audio/system/*.opus.lic # so the shipped samples work without bundling multiple Whisper models. RUN find /opt/streamkit/samples/pipelines -type f \( -name '*.yml' -o -name '*.yaml' \) -print0 | \ xargs -0 sed -i \ - -e 's#models/ggml-base\\.en-q5_1\\.bin#models/ggml-tiny-q5_1.bin#g' \ - -e 's#models/ggml-tiny\\.en-q5_1\\.bin#models/ggml-tiny-q5_1.bin#g' \ - -e 's#models/ggml-base-q5_1\\.bin#models/ggml-tiny-q5_1.bin#g' && \ + -e 's#models/ggml-base\.en-q5_1\.bin#models/ggml-tiny-q5_1.bin#g' \ + -e 's#models/ggml-tiny\.en-q5_1\.bin#models/ggml-tiny-q5_1.bin#g' \ + -e 's#models/ggml-base-q5_1\.bin#models/ggml-tiny-q5_1.bin#g' && \ rm -f \ /opt/streamkit/samples/pipelines/oneshot/speech_to_text_translate.yml \ /opt/streamkit/samples/pipelines/oneshot/gain_filter_rust.yml \