philipp-zettl commited on
Commit
5866d30
·
verified ·
1 Parent(s): ea14082

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def greet(audio):
5
+ return "Hello " + audio + "!!"
6
+
7
+ demo = gr.Interface(fn=greet, inputs="audio", outputs="text")
8
+ demo.launch()