Pijush2023 commited on
Commit
100312d
·
verified ·
1 Parent(s): 5962cc8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -527,7 +527,7 @@ def transcribe_function(stream, new_chunk):
527
 
528
  result = pipe_asr({"array": stream, "sampling_rate": sr}, return_timestamps=False)
529
 
530
- full_text = result.get("text","")
531
 
532
  return stream, full_text, result
533
 
 
527
 
528
  result = pipe_asr({"array": stream, "sampling_rate": sr}, return_timestamps=False)
529
 
530
+ full_text = result.get("text")
531
 
532
  return stream, full_text, result
533