Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
freddyaboulton
/
interface-blocks
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
freddyaboulton
HF Staff
commited on
11 days ago
Commit
6804226
·
verified
·
1 Parent(s):
bc89b91
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
gr.Interface(lambda x: x, "textbox", "textbox")
5
+
6
+
demo.launch()