Sandiago21 commited on
Commit
8ba558e
·
verified ·
1 Parent(s): 4405eae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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
 
@@ -49,6 +49,6 @@ with demo:
49
  gr.TabbedInterface(
50
  [mic_transcribe, file_transcribe],
51
  ["Transcribe Microphone", "Transcribe Audio File"],
52
- ),
53
 
54
  demo.launch()
 
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
 
 
49
  gr.TabbedInterface(
50
  [mic_transcribe, file_transcribe],
51
  ["Transcribe Microphone", "Transcribe Audio File"],
52
+ )
53
 
54
  demo.launch()