File size: 266 Bytes
529d20c
 
 
6214259
529d20c
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def greet(name):
    !wget -P vits_pretrain https://github.com/PlayVoice/so-vits-svc-5.0/releases/download/5.0/sovits5.0.pretrain.pth
    return "Hello " + name + "!!"

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