Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
eduardo-meik
/
DialogosMVP
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
eduardo-meik
commited on
Sep 4, 2023
Commit
17ee792
·
1 Parent(s):
2ea4c52
Add application file
Browse files
Files changed (1)
hide
show
app.py
+2
-1
app.py
CHANGED
Viewed
@@ -1,3 +1,4 @@
1
import streamlit as st
2
3
-
st.
title
(
"Hello
World"
)
1
import streamlit as st
2
3
+
x =
st.
slider
(
'Select
a value'
)
4
+
st.write(x, 'squared is', x * x)