ref / pages /Info.py
Anustup's picture
Upload 2 files
7f0af57
raw
history blame contribute delete
220 Bytes
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)