ahmetdogan47 commited on
Commit
377993d
·
verified ·
1 Parent(s): 7d8b418

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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