Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,5 +7,5 @@ listen_client = InferenceClient("openai/whisper-medium")
|
|
7 |
def audio_change(audio):
|
8 |
return listen_client.automatic_speech_recognition(audio).text
|
9 |
|
10 |
-
gr.Interface(fn=audio_change, inputs=gr.Audio("Ses"), outputs=gr.Text()).launch()
|
11 |
|
|
|
7 |
def audio_change(audio):
|
8 |
return listen_client.automatic_speech_recognition(audio).text
|
9 |
|
10 |
+
gr.Interface(fn=audio_change, inputs=gr.Audio(label="Ses"), outputs=gr.Text()).launch()
|
11 |
|