hardik12321 commited on
Commit
f7adea5
·
verified ·
1 Parent(s): c53da78

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def dummy_function():
4
+ return "This space hosts model files for the voice analysis API"
5
+
6
+ iface = gr.Interface(
7
+ fn=dummy_function,
8
+ inputs=None,
9
+ outputs="text",
10
+ title="Voice Analysis Model Files",
11
+ description="This space hosts the model files for the voice analysis API. The actual API is hosted on Render."
12
+ )
13
+
14
+ iface.launch()