abidlabs HF Staff commited on
Commit
a1aa8a9
·
1 Parent(s): 69f31bf

Create app.py

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