Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -70,3 +70,19 @@ Questions = st.text_input("Ask a question:")
|
|
70 |
if st.button("Submit"):
|
71 |
answer = ChatBot(Questions)
|
72 |
st.write(answer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
if st.button("Submit"):
|
71 |
answer = ChatBot(Questions)
|
72 |
st.write(answer)
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
# --- Logo ---
|
78 |
+
st.set_page_config(
|
79 |
+
page_title="AI Engineer Test Chatbot",
|
80 |
+
page_icon="https://www.mul.edu.pk/images/minhaj-university-lahore.png",
|
81 |
+
layout="wide",
|
82 |
+
)
|
83 |
+
|
84 |
+
st.sidebar.image("https://www.mul.edu.pk/images/logo-mul.png", width=200)
|
85 |
+
|
86 |
+
st.sidebar.title("Navigation")
|
87 |
+
st.sidebar.write("Reclaim Your Mental Health")
|
88 |
+
st.sidebar.markdown("[Visit us at](https://www.insighttherapysolutions.com/)")
|