Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,9 @@ def transcribe(audio):
|
|
26 |
return result.text
|
27 |
|
28 |
gr.Interface(
|
29 |
-
title = 'Speech to text
|
|
|
|
|
30 |
fn=transcribe,
|
31 |
inputs=[
|
32 |
gr.inputs.Audio(source="microphone", type="filepath")
|
|
|
26 |
return result.text
|
27 |
|
28 |
gr.Interface(
|
29 |
+
title = 'Speech to text with OpenAI (Large)',
|
30 |
+
description="General-purpose speech recognition model"
|
31 |
+
description="It is trained on a large dataset of diverse audio and is also a multi-task model that can perform multilingual speech recognition as well as speech translation and language identification."
|
32 |
fn=transcribe,
|
33 |
inputs=[
|
34 |
gr.inputs.Audio(source="microphone", type="filepath")
|