Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
w3robotics
/
TestChat
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
55a439e
TestChat
/
app.py
w3robotics
Update app.py
55a439e
verified
7 months ago
raw
Copy download link
history
blame
172 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)
uploaded_file = st.file_uploader(
"Choose a file to upload"
)
st.write(uploaded_file)