sdadsd / app.py
xiaozhou0822's picture
Update app.py
274c222
raw
history blame contribute delete
No virus
137 Bytes
import streamlit as st
model_id = 'codellama/CodeLlama-13b-Instruct-hf'
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)