File size: 214 Bytes
182f579
ff6f6e9
74004ca
 
 
182f579
b85e74a
182f579
 
8333e16
 
7fc26fa
182f579
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()