inLine-XJY-test / app.py
inLine-XJY's picture
Update app.py
b85e74a verified
raw
history blame contribute delete
No virus
214 Bytes
import gradio
def my_inference_function(name):
return "test.wav"
gradio_interface = gradio.Interface(
fn = my_inference_function,
inputs = "text",
outputs = "audio"
)
gradio_interface.launch()