Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
PeacebinfLow
/
mindseye-sandbox-flowstudio
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
PeacebinfLow
commited on
Dec 11, 2025
Commit
7954e87
·
verified
·
1 Parent(s):
8d67576
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from app_02.layout import build_demo
2
+
3
+
# Hugging Face will look for a Gradio Blocks instance named `demo`
4
+
demo = build_demo()
5
+
6
+
if __name__ == "__main__":
7
+
demo.launch()