Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Renecto/Parent
Renecto
/
grandchild
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Renecto
commited on
Aug 11, 2024
Commit
2842ee5
·
verified
·
1 Parent(s):
f4c5828
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 greet(name):
5
+
time.sleep(10)
6
+
return "Hello " + name + "!!"
7
+
8
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
demo.launch()