File size: 367 Bytes
f7adea5
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()