abidlabs HF Staff commited on
Commit
f73529f
·
1 Parent(s): 1374c0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
  def predict(x):
4
- return x
5
 
6
  iface = gr.Interface(fn=predict, inputs='text', outputs='text')
7
  iface.launch()
 
1
  import gradio as gr
2
 
3
  def predict(x):
4
+ return gr.__version__
5
 
6
  iface = gr.Interface(fn=predict, inputs='text', outputs='text')
7
  iface.launch()