Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
tobiccino
/
tts
like
0
Sleeping
App
Files
Files
Community
24a2ad4
tts
/
app.py
tobiccino
test app.py
24a2ad4
over 1 year ago
raw
Copy download link
history
blame
184 Bytes
import
gradio
as
gr
import
vietTTS.synthesizer.run
def
greet
(
name
):
run()
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()