Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
aigmixer/piper
gyroing
/
persian-tts-piper
like
15
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aac2d7a
persian-tts-piper
/
app.py
aigmixer
Update app.py
fbe87a0
over 1 year ago
raw
Copy download link
history
blame
Safe
229 Bytes
#testing commits
import
gradio
as
gr
import
piper
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch(show_api=
False
)