Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
skytnt/moe-tts
DemoLou
/
moe-tts
like
1
Runtime error
App
Files
Files
Community
main
moe-tts
/
run.py
DemoLou
Update run.py
b3bce45
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
185 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"ping-moe "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch()