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