Update app.py
Browse files
app.py
CHANGED
|
@@ -75,7 +75,7 @@ def load_css():
|
|
| 75 |
|
| 76 |
# ๐น Streamlit Page Configuration
|
| 77 |
st.set_page_config(
|
| 78 |
-
page_title="
|
| 79 |
page_icon="๐",
|
| 80 |
layout="wide",
|
| 81 |
initial_sidebar_state="expanded"
|
|
@@ -84,24 +84,8 @@ st.set_page_config(
|
|
| 84 |
# Load minimal CSS
|
| 85 |
load_css()
|
| 86 |
|
| 87 |
-
# ๐น Sidebar with information
|
| 88 |
-
with st.sidebar:
|
| 89 |
-
st.image("logo.png", width=200)
|
| 90 |
-
|
| 91 |
-
st.markdown("### โน๏ธ About")
|
| 92 |
-
st.markdown("""
|
| 93 |
-
This AI assistant helps answer questions about Vistula University.
|
| 94 |
-
Ask anything about admissions, courses, campus life, and more!
|
| 95 |
-
""")
|
| 96 |
-
|
| 97 |
-
st.markdown("### ๐ Quick Links")
|
| 98 |
-
st.markdown("[University Website](https://www.vistula.edu.pl/en)")
|
| 99 |
-
st.markdown("[Student Portal](https://www.vistula.edu.pl/en/students)")
|
| 100 |
-
st.markdown("[Contact Us](https://www.vistula.edu.pl/en/contact)")
|
| 101 |
-
|
| 102 |
# ๐น Main content area
|
| 103 |
-
st.title("
|
| 104 |
-
st.subheader("Your personal guide to university information. Ask me anything!")
|
| 105 |
|
| 106 |
# ๐น Retrieve Data (Cached for Performance)
|
| 107 |
@st.cache_resource
|
|
|
|
| 75 |
|
| 76 |
# ๐น Streamlit Page Configuration
|
| 77 |
st.set_page_config(
|
| 78 |
+
page_title="Mentoring AI Assistant",
|
| 79 |
page_icon="๐",
|
| 80 |
layout="wide",
|
| 81 |
initial_sidebar_state="expanded"
|
|
|
|
| 84 |
# Load minimal CSS
|
| 85 |
load_css()
|
| 86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
# ๐น Main content area
|
| 88 |
+
st.title("Mentoring AI Assistant")
|
|
|
|
| 89 |
|
| 90 |
# ๐น Retrieve Data (Cached for Performance)
|
| 91 |
@st.cache_resource
|