textToSQL commited on
Commit
2f8eb98
·
1 Parent(s): 3ae5946

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -39,4 +39,17 @@ gr.Interface(
39
  outputs=[
40
  "textbox"
41
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  live=True).launch()
 
39
  outputs=[
40
  "textbox"
41
  ],
42
+
43
+ live=True).launch()
44
+
45
+ gr.Interface(
46
+ title = 'OpenAI Whisper ASR Gradio Web UI',
47
+ fn=transcribe,
48
+ inputs=[
49
+ gr.inputs.Audio(source="microphone", type="filepath")
50
+ ],
51
+ outputs=[
52
+ "textbox"
53
+ ],
54
+
55
  live=True).launch()