TestChat / app.py
w3robotics's picture
Update app.py
55a439e verified
raw
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)