import streamlit as st # Write a title and some text to the app: st.title('My Hugging Face Space') st.write('This is a simple Streamlit app in a Hugging Face Space!') # Interactive widgets: number = st.slider('Select a number', 0, 10, 5) st.write('You selected:', number)