import streamlit as st model_id = 'codellama/CodeLlama-13b-Instruct-hf' x = st.slider('Select a value') st.write(x, 'squared is', x * x)