Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
juuxn
/
SimpleRVC
like
47
Runtime error
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
refs/pr/1
SimpleRVC
/
app.py
GzxsS
Update app.py
23e3aea
over 1 year ago
raw
Copy download link
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()