fix: pass whisper backend to solo pipeline transcribe_file call

This commit is contained in:
2026-04-02 09:18:20 +02:00
parent 11dee75ab3
commit 7e0851fc95
+1
View File
@@ -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})