Spaces:
Sleeping
Sleeping
import streamlit as st | |
# set page to wide | |
st.set_page_config(layout="wide") | |
st.header('ChatStudio') | |
# Create sidebar with dropdown menu with content about the app | |
with st.sidebar: | |
st.subheader('ChatStudio') | |
page = st.selectbox("Choose a context", [ | |
'Wiki', | |
'Github', | |
'HuggingFace', | |
]) | |
# Create st.tabs | |
tabs = st.tabs( | |
[ | |
"Wiki", | |
"Github", | |
"HuggingFace", | |
] | |
) | |
x = st.slider('Select a value') | |
st.write(x, 'squared is', x * x) | |