Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SpatialWebAgent
/
SpatialParse
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Shunfeng Zheng
commited on
Apr 2, 2025
Commit
11a5c67
·
1 Parent(s):
3ba798c
Add Streamlit demo
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
# app.py
2
+
import streamlit as st
3
+
4
+
st.title("Spatial Parse Demo")
5
+
x = st.slider('Select a value')
6
+
st.write(x, 'squared is', x * x)