File size: 130 Bytes
f16d2cd
 
677fc36
 
885747d
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def predict(x):
    return x

iface = gr.Interface(fn=predict, inputs='text', outputs='text')
iface.launch()