Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 321 Bytes
4ea5474 7c2045a 4ea5474 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
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,
outputs="text",
title="xVASynth",
)
if __name__ == "__main__":
gradio_app.launch() |