From 80e724cf864d60dbb3c378f962b04ff105162b64 Mon Sep 17 00:00:00 2001 From: Adolfo Delorenzo Date: Mon, 2 Jun 2025 17:51:29 -0600 Subject: [PATCH] Update app.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 39c74a7..9cbf256 100644 --- a/app.py +++ b/app.py @@ -178,7 +178,7 @@ def update_tts_config(): # Load Whisper model logger.info("Loading Whisper model...") -whisper_model = whisper.load_model("medium") +whisper_model = whisper.load_model("base") device = torch.device("cuda" if torch.cuda.is_available() else "cpu") whisper_model = whisper_model.to(device) logger.info("Whisper model loaded successfully")