chinmaydan commited on
Commit
e16f390
·
1 Parent(s): 1503067

only prints text now (only in english

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ def predict(audio, mic_audio=None):
27
  result = whisper.decode(model, mel, options)
28
 
29
  print(result.text)
30
- return result.text, gr.update(visible=True), gr.update(visible=True), gr.update(visible=True)
31
 
32
 
33
 
 
27
  result = whisper.decode(model, mel, options)
28
 
29
  print(result.text)
30
+ return result.text
31
 
32
 
33