Update app.py
Browse files
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 |
-
|
| 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 |
-
|
| 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 |
|