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