Browse Source

fix: strip transcription text

Timothy J. Baek 1 year ago
parent
commit
2ef4fc1215
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/apps/audio/main.py

+ 1 - 1
backend/apps/audio/main.py

@@ -69,7 +69,7 @@ def transcribe(
 
         transcript = "".join([segment.text for segment in list(segments)])
 
-        return {"text": transcript}
+        return {"text": transcript.strip()}
 
     except Exception as e:
         print(e)