Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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()
|