ML / app.py
mhmdabd's picture
Update app.py
3425972 verified
raw
history blame contribute delete
223 Bytes
# app.py
import streamlit as st
st.title("Streamlit inside Gradio Space 🚀")
st.write("This is a Streamlit app running in a Gradio Space.")
number = st.slider("Pick a number", 0, 100, 25)
st.write("You chose:", number)