From 90f8ecafe5a634633a243ac00d7a126111486c7e Mon Sep 17 00:00:00 2001 From: Aleksander Date: Fri, 3 Jul 2026 19:44:29 +0200 Subject: [PATCH] whisper: host the models inside wayvr.org --- dash-frontend/src/util/whisper.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dash-frontend/src/util/whisper.rs b/dash-frontend/src/util/whisper.rs index c6920268..9ae5a1f3 100644 --- a/dash-frontend/src/util/whisper.rs +++ b/dash-frontend/src/util/whisper.rs @@ -12,27 +12,27 @@ pub const WHISPER_MODELS: &[WhisperModel] = &[ WhisperModel { file_name: "ggml-base-q8_0.bin", display_name: "Base Q8 (78MiB)", - url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-base-q8_0.bin", + url: "https://wayvr.org/files/whisper/ggml-base-q8_0.bin", }, WhisperModel { file_name: "ggml-small-q8_0.bin", display_name: "Small Q8 (252MiB)", - url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-small-q8_0.bin", + url: "https://wayvr.org/files/whisper/ggml-small-q8_0.bin", }, WhisperModel { file_name: "ggml-large-v3-turbo-q5_0.bin", display_name: "Turbo Q5 (574MiB)", - url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3-turbo-q5_0.bin", + url: "https://wayvr.org/files/whisper/ggml-large-v3-turbo-q5_0.bin", }, WhisperModel { file_name: "ggml-large-v3-turbo-q8_0.bin", display_name: "Turbo Q8 (874MiB)", - url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3-turbo-q8_0.bin", + url: "https://wayvr.org/files/whisper/ggml-large-v3-turbo-q8_0.bin", }, WhisperModel { file_name: "ggml-large-v3-turbo.bin", display_name: "Turbo (1.5GiB)", - url: "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large-v3-turbo.bin", + url: "https://wayvr.org/files/whisper/ggml-large-v3-turbo.bin", }, ];