xVASynth-TTS / app.py
Pendrokar's picture
gradio + server
4ea5474
raw
history blame
301 Bytes
import server as xvaserver
import gradio as gr
def predict(input):
return ''
input_textbox = gr.Textbox(
label="Input Text",
lines=1,
autofocus=True
)
gradio_app = gr.Interface(
predict,
input_textbox,
title="xVASynth",
)
if __name__ == "__main__":
gradio_app.launch()