From dc5c455f0e4dfad1ef4bdec89fc0ea2200a42558 Mon Sep 17 00:00:00 2001 From: Kar l5 Date: Sun, 15 Jun 2025 00:32:38 +0530 Subject: [PATCH] model --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f179d57..5914a79 100644 --- a/app/main.py +++ b/app/main.py @@ -6,7 +6,7 @@ from whispercpp import Whisper app = FastAPI() # Load the local model without Hugging Face token -whisper = Whisper.from_pretrained("./app/model/ggml-base.en.bin") +whisper = Whisper.from_pretrained("./app/model/ggml-tiny.en.bin") @app.post("/transcribe") async def transcribe_audio(audio: UploadFile = File(...)):