Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def dummy_function(): | |
| return "This space hosts model files for the voice analysis API" | |
| iface = gr.Interface( | |
| fn=dummy_function, | |
| inputs=None, | |
| outputs="text", | |
| title="Voice Analysis Model Files", | |
| description="This space hosts the model files for the voice analysis API. The actual API is hosted on Render." | |
| ) | |
| iface.launch() |