akashsivanandan commited on
Commit
f7770e0
1 Parent(s): d8f94b5

Created app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ gr.Interface(
4
+ fn=transcribe,
5
+ inputs=[
6
+ gr.inputs.Audio(source="microphone", type="numpy"),
7
+ "state"
8
+ ],
9
+ outputs= [
10
+ "text",
11
+ "state"
12
+ ],
13
+ live=True).launch()