Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
load-load-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
May 27, 2024
Commit
f6cb342
·
verified
·
1 Parent(s):
4f46464
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
t = gr.Textbox()
5
+
demo.load(lambda :"Hi", None, t)
6
+
7
+
demo.launch()