Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tobiccino
/
tts
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e836e92
tts
/
app.py
tobiccino
test app.py
e836e92
over 2 years ago
raw
Copy download link
history
blame
185 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()