File size: 428 Bytes
1da3bb7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
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(
"""
"""
)
|