abidlabs HF Staff commited on
Commit
87641f9
·
1 Parent(s): e3adbbd

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import time
3
+
4
+ def test(x):
5
+ time.sleep(5)
6
+ return x
7
+
8
+ gr.Interface(test, "text", "text").launch()
9
+