anyuanay commited on
Commit
56e6969
·
verified ·
1 Parent(s): d55e2e7

Create app.py

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