myone / app.py
neuroama's picture
Update app.py
6214259
raw
history blame
266 Bytes
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()