RAG / app.py
mahynski's picture
test
128b73f
raw
history blame
93 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is now', x * x)