kadriu commited on
Commit
8787416
1 Parent(s): 0bd7cc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -4
app.py CHANGED
@@ -1,7 +1,13 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- demo.launch()
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ def record_audio(audio):
4
+ return audio
5
 
6
+ demo = gr.Interface(
7
+ record_audio,
8
+ gr.Audio(source="microphone", type="filepath"),
9
+ "audio"
10
+ )
11
+
12
+ if __name__ == "__main__":
13
+ demo.launch()