hardik12321's picture
Create app.py
f7adea5 verified
raw
history blame contribute delete
367 Bytes
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()