Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
gyroing/Persian_Piper_TTS
amirgame197
/
Persian-TTS-Male
like
2
Running
App
Files
Files
Community
f845b05
Persian-TTS-Male
/
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
)