Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def predict(x):
|
4 |
-
return
|
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()
|