File size: 266 Bytes
41ceddd
33d62f7
41ceddd
 
a5d109b
41ceddd
a5d109b
41ceddd
1
2
3
4
5
6
7
8
import gradio as gr
import numpy as np

def greet(name):
    return [(16000, np.random.randn(16000)), (16000, np.random.randn(16000)), (16000, np.random.randn(16000))]

iface = gr.Interface(fn=greet, inputs="text", outputs=["audio", "audio", "audio"])
iface.launch()