import streamlit as st st.title("Trying streamlit in hugging face") st.header("Hugging Face") x = st.slider('Select a value') st.write(x, 'squared is', x * x)