test1 / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
677fc36
raw
history blame
109 Bytes
def predict(x):
return x
iface = gr.Interface(fn=predict, inputs='text', outputs='text')
iface.launch()