File size: 132 Bytes
a79cc2a
 
 
 
 
 
1
2
3
4
5
6
import gradio as gr

def infer(text):
    return text

gr.Interface(fn=infer,inputs=[gr.Textbox()], outputs=[gr.Textbox()]).launch()