tts / app.py
tobiccino's picture
test app.py
4a2db54
raw
history blame
No virus
190 Bytes
import gradio as gr
from .vietTTS.synthesizer import run
def greet(name):
run()
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()