Spaces:
Sleeping
Sleeping
File size: 528 Bytes
ba1c7a0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
from menu import menu_with_redirect
# Path manipulation
from pathlib import Path
# Custom and other imports
import project_config
# Redirect to app.py if not logged in, otherwise show the navigation menu
menu_with_redirect()
# Header
st.image(str(project_config.MEDIA_DIR / 'about_header.svg'), use_column_width=True)
# Main content
st.markdown(f"Hello, {st.session_state.name}! Welcome to GRAVITY, a GRaph AI VISualization Tool to query and visualize knowledge graph-grounded biomedical AI models.") |