ProPainter / app.py
fffiloni's picture
Create app.py
a79cc2a
raw
history blame
No virus
132 Bytes
import gradio as gr
def infer(text):
return text
gr.Interface(fn=infer,inputs=[gr.Textbox()], outputs=[gr.Textbox()]).launch()