fix: make transcript refinement language-aware

This commit is contained in:
Jamie Pine
2026-07-21 12:35:20 -07:00
parent 52f8d8dd38
commit 7ac663fd0a
20 changed files with 1240 additions and 44 deletions
+2
View File
@@ -222,6 +222,8 @@ async def retranscribe_capture_endpoint(
)
except FileNotFoundError as e:
raise HTTPException(status_code=410, detail=str(e))
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
logger.exception("Retranscribe failed for capture %s", capture_id)
raise HTTPException(status_code=500, detail=str(e))