Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
seachen
/
Intern_streamlit_rag
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
xiaoqianran
commited on
Jan 28, 2025
Commit
e8eba5b
·
1 Parent(s):
101bd3a
Add application file
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
2
+
import streamlit as st
3
+
4
+
x = st.slider('Select a value')
5
+
st.write(x, 'squared is', x * x)