import streamlit as st from pages.rubert.app_bert import ruBert_page from pages.MiniLM.MiniLm_app import MiniLm_page st.markdown(""" """, unsafe_allow_html=True) def app_description_page(): st.title("Welcome to My App!") def main(): st.sidebar.title("Book app") page = st.sidebar.radio("Select page:", ["About Project", "📚 Book search", "🔍 Book search (faiss)"]) if page == "About Project": app_description_page() if page == "📚 Book search": ruBert_page() if page == "🔍 Book search (faiss)": MiniLm_page() if __name__ == "__main__": main()