SimpleRVC / app.py
GzxsS's picture
Update app.py
23e3aea
raw
history blame
159 Bytes
import gradio as gr
def greet(name):
return "CHUPAME EL PENE " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()