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