a027256 a147158 bcb986c 16cd190 a147158 16cd190
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st from app_utils.frontend_utils import build_sidebar build_sidebar() with open("README.md", "r") as fin: readme = fin.read().rpartition("---")[-1] st.markdown(readme, unsafe_allow_html=True)