import awesome_streamlit as ast import streamlit as st import pages.home import pages.turna st.set_page_config( page_title="TEST", page_icon="📖", initial_sidebar_state="expanded", layout="wide" ) PAGES = { "Home": pages.home, "Turna": pages.turna, } st.sidebar.title("Navigation") selection = st.sidebar.radio("Pages", list(PAGES.keys())) page = PAGES[selection] # with st.spinner(f"Loading {selection} ..."): ast.shared.components.write_page(page) st.sidebar.header("Info") st.sidebar.write( "Models are available on [HF Hub](https://huggingface.co/collections/boun-tabi-LMG)" ) st.sidebar.write( "Models source code available on [GitHub](https://github.com/boun-tabi-LMG/turkish-lm-tuner)" )