Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
aigmixer/piper
gyroing
/
Persian_Piper_TTS
like
9
Running
App
Files
Files
Community
aac2d7a
Persian_Piper_TTS
/
app.py
aigmixer
Update app.py
fbe87a0
about 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
)