import streamlit as st | |
st.set_page_config( | |
page_title="LLM Open Generation Bias", | |
page_icon="π", | |
) | |
st.title('xxx') | |
st.write("xxx") | |
st.markdown( | |
""" | |
Description | |
""" | |
) | |
# Sidebar content | |
st.sidebar.title("Demo1") | |
st.sidebar.subheader("Instruction") | |
st.sidebar.markdown( | |
""" | |
""" | |
) | |
st.sidebar.subheader("Demo2") | |
st.sidebar.subheader("Instruction") | |
st.sidebar.markdown( | |
""" | |
""" | |
) | |