From 7e0851fc9539e693486acc9346a97bd45c4cf203 Mon Sep 17 00:00:00 2001 From: "thomas.kopp" Date: Thu, 2 Apr 2026 09:18:20 +0200 Subject: [PATCH] fix: pass whisper backend to solo pipeline transcribe_file call --- api/pipeline.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/pipeline.py b/api/pipeline.py index d5481c6..783b5fb 100644 --- a/api/pipeline.py +++ b/api/pipeline.py @@ -69,6 +69,7 @@ async def _run_solo_pipeline(cfg, wav_path, output_dir, instructions): model_name=cfg["whisper"]["model"], device=cfg["whisper"]["device"], base_url=cfg["whisper"].get("base_url", ""), + backend=cfg["whisper"].get("backend", "openai"), ) await broadcast({"event": "transcribed", "raw": raw_text})