import streamlit as st from search_page import run_search_page from summarize_page import run_summarize_page from dashboard_page import run_dashboard_page from cluster_page import run_cluster_page from crawler_page import run_crawler_page st.set_page_config(page_title="AI Tree Lite 포털", page_icon="🌳") st.title("πŸ“š AI-Tree Lite 포털") tab1, tab2, tab3, tab4, tab5 = st.tabs(["πŸ” 검색", "🧠 μš”μ•½", "πŸ“Š λŒ€μ‹œλ³΄λ“œ", "🧠 ν΄λŸ¬μŠ€ν„°λ§", "πŸ•Έ μ™ΈλΆ€ λ¬Έμ„œ μˆ˜μ§‘"]) with tab1: run_search_page() with tab2: run_summarize_page() with tab3: run_dashboard_page() with tab4: run_cluster_page() with tab5: run_crawler_page()