tts / app.py
tobiccino's picture
test app.py
e836e92
raw
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()