tts / app.py
tobiccino's picture
test app.py
6194d18
raw
history blame
223 Bytes
import gradio as gr
from .vietTTS.synthesizer import run
def greet(name):
run()
return "Hello " + name + "!!"
if __name__ == '__main__':
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()