| import streamlit as st |
| from st_paywall import add_auth |
|
|
| add_auth(required=False) |
|
|
| st.write(st.session_state.email) |
| st.write(st.session_state.user_subscribed) |
|
|
| if "buttons" in st.session_state: |
| st.session_state.buttons = st.session_state.buttons |
|
|
| |
| |
| |
| |
| |
| |
|
|
| pg = st.navigation([ |
| st.Page("rag_search.py", title="Smart-Search (Retrieval Augmented Generations)", icon="๐"), |
| st.Page("parsing.py", title="UAP Feature Extraction (Shape, Speed, Color)", icon="๐"), |
| st.Page("analyzing.py", title="Statistical Analysis (UMAP+HDBSCAN, XGBoost, V-Cramer)", icon="๐ง "), |
| st.Page("magnetic.py", title="Magnetic Anomaly Detection (InterMagnet Stations)", icon="๐งฒ"), |
| st.Page("map.py", title="Interactive Map", icon="๐บ๏ธ"), |
| ]) |
|
|
| pg.run() |
|
|