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

def predict(x):
    return gr.__version__

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