Sandiago21 commited on
Commit
17e2ae8
·
verified ·
1 Parent(s): 1dc53d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -32,7 +32,7 @@ mic_transcribe = gr.Interface(
32
  fn=transcribe_speech,
33
  inputs=gr.Audio(sources="microphone", type="filepath"),
34
  outputs=gr.Textbox(),
35
- tilte=title,
36
  description=description,
37
  )
38
 
@@ -41,7 +41,7 @@ file_transcribe = gr.Interface(
41
  inputs=gr.Audio(sources="upload", type="filepath"),
42
  outputs=gr.Textbox(),
43
  examples=[["./example.wav"]],
44
- tilte=title,
45
  description=description,
46
  )
47
 
 
32
  fn=transcribe_speech,
33
  inputs=gr.Audio(sources="microphone", type="filepath"),
34
  outputs=gr.Textbox(),
35
+ title=title,
36
  description=description,
37
  )
38
 
 
41
  inputs=gr.Audio(sources="upload", type="filepath"),
42
  outputs=gr.Textbox(),
43
  examples=[["./example.wav"]],
44
+ title=title,
45
  description=description,
46
  )
47