File size: 223 Bytes
3425972
 
768a5a6
3425972
 
768a5a6
3425972
 
1
2
3
4
5
6
7
8
9
# 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)