Prechádzať zdrojové kódy

fix: strip transcription text

Timothy J. Baek 1 rok pred
rodič
commit
2ef4fc1215
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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)