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