Pijush2023 commited on
Commit
06d41a8
·
verified ·
1 Parent(s): 6ef7b9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -641,7 +641,7 @@ def transcribe_function(stream, new_chunk):
641
 
642
  result = pipe_asr({"array": stream, "sampling_rate": sr}, return_timestamps=False)
643
 
644
- full_text = result.get("text", "")
645
 
646
  return stream, full_text, result
647
 
 
641
 
642
  result = pipe_asr({"array": stream, "sampling_rate": sr}, return_timestamps=False)
643
 
644
+ full_text = result.get("text")
645
 
646
  return stream, full_text, result
647