Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
workers-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
Jun 1, 2022
Commit
87641f9
·
1 Parent(s):
e3adbbd
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -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
+