kozak-vaclav commited on
Commit
728ec5d
1 Parent(s): c2e5dee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -67,13 +67,13 @@ demo = gr.Blocks()
67
  mic_transcribe = gr.Interface(
68
  fn=transcribe,
69
  inputs=gr.Audio(sources="microphone", type="filepath"),
70
- outputs=gr.outputs.Textbox(),
71
  )
72
 
73
  file_transcribe = gr.Interface(
74
  fn=transcribe,
75
  inputs=gr.Audio(sources="upload", type="filepath"),
76
- outputs=gr.outputs.Textbox(),
77
  )
78
 
79
  with demo:
 
67
  mic_transcribe = gr.Interface(
68
  fn=transcribe,
69
  inputs=gr.Audio(sources="microphone", type="filepath"),
70
+ outputs=gr.Textbox(),
71
  )
72
 
73
  file_transcribe = gr.Interface(
74
  fn=transcribe,
75
  inputs=gr.Audio(sources="upload", type="filepath"),
76
+ outputs=gr.Textbox(),
77
  )
78
 
79
  with demo: