AlexMo commited on
Commit
a262bbb
·
1 Parent(s): 3d38d6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def transcribe_inp(microphone, file_upload):
21
 
22
  file = microphone if microphone is not None else file_upload
23
 
24
- text = model.transcribe(file)["text"]
25
 
26
  return warn_output + text
27
 
 
21
 
22
  file = microphone if microphone is not None else file_upload
23
 
24
+ text = model(file)["text"]
25
 
26
  return warn_output + text
27