Update app.py
Browse files
app.py
CHANGED
|
@@ -11,6 +11,8 @@ from langchain.chains import ConversationalRetrievalChain
|
|
| 11 |
from langchain_openai import ChatOpenAI
|
| 12 |
from langchain_community.vectorstores import Chroma
|
| 13 |
|
|
|
|
|
|
|
| 14 |
#####################################################
|
| 15 |
##################### Sidebar #######################
|
| 16 |
st.sidebar.title("Introduction")
|
|
@@ -30,7 +32,7 @@ ChatMate is developed by Lorentz Yeung
|
|
| 30 |
#####################################################
|
| 31 |
##################### UI ############################
|
| 32 |
# Setting page title and header
|
| 33 |
-
|
| 34 |
st.markdown("<h1 style='text-align: center; color: navy;'>KaggleX AI Course Coordinator</h1>", unsafe_allow_html=True)
|
| 35 |
# st.markdown("<h4 style='text-align: center;'>A cutting-edge language model</h4>", unsafe_allow_html=True)
|
| 36 |
st.markdown("<p style='text-align: right'>By <a href='https://entzyeung.github.io/portfolio/index.html'>Lorentz Yeung</a></p>", unsafe_allow_html=True)
|
|
|
|
| 11 |
from langchain_openai import ChatOpenAI
|
| 12 |
from langchain_community.vectorstores import Chroma
|
| 13 |
|
| 14 |
+
st.set_page_config(page_title="KaggleX AI Course Coordinator", page_icon=":robot_face:")
|
| 15 |
+
|
| 16 |
#####################################################
|
| 17 |
##################### Sidebar #######################
|
| 18 |
st.sidebar.title("Introduction")
|
|
|
|
| 32 |
#####################################################
|
| 33 |
##################### UI ############################
|
| 34 |
# Setting page title and header
|
| 35 |
+
|
| 36 |
st.markdown("<h1 style='text-align: center; color: navy;'>KaggleX AI Course Coordinator</h1>", unsafe_allow_html=True)
|
| 37 |
# st.markdown("<h4 style='text-align: center;'>A cutting-edge language model</h4>", unsafe_allow_html=True)
|
| 38 |
st.markdown("<p style='text-align: right'>By <a href='https://entzyeung.github.io/portfolio/index.html'>Lorentz Yeung</a></p>", unsafe_allow_html=True)
|