Entz commited on
Commit
c1eb8a9
·
verified ·
1 Parent(s): ab1b991

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -12,11 +12,11 @@ from langchain.chains import ConversationalRetrievalChain
12
  from langchain_openai import ChatOpenAI
13
  from langchain_community.vectorstores import Chroma
14
 
15
- st.set_page_config(page_title="KaggleX AI Course Coordinator", page_icon=":robot_face:")
16
 
17
  #######################################################
18
  ####################### Sidebar #######################
19
- st.sidebar.title("Introduction")
20
  st.sidebar.markdown("""
21
  KaggleX AI Course Coordinator is an advanced conversational AI, expertly crafted to solve the data science learners' problems.
22
 
@@ -36,7 +36,7 @@ st.sidebar.markdown("<p style='text-align: right'>Developed and maintained by <a
36
  # Setting page title and header
37
 
38
  st.markdown("<h1 style='text-align: center; color: navy;'>KaggleX AI Course Coordinator</h1>", unsafe_allow_html=True)
39
- # st.markdown("<h4 style='text-align: center;'>A cutting-edge language model</h4>", unsafe_allow_html=True)
40
  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)
41
  # st.session_state['API_Key']= st.text_input("First, to get it work, put your OpenAI API Key here please, the system will enter for you automatically.",type="password")
42
 
 
12
  from langchain_openai import ChatOpenAI
13
  from langchain_community.vectorstores import Chroma
14
 
15
+ st.set_page_config(page_title="KaggleX AI Course Coordinator (Demo)", page_icon=":robot_face:")
16
 
17
  #######################################################
18
  ####################### Sidebar #######################
19
+ st.sidebar.title("Introduction (Demo)")
20
  st.sidebar.markdown("""
21
  KaggleX AI Course Coordinator is an advanced conversational AI, expertly crafted to solve the data science learners' problems.
22
 
 
36
  # Setting page title and header
37
 
38
  st.markdown("<h1 style='text-align: center; color: navy;'>KaggleX AI Course Coordinator</h1>", unsafe_allow_html=True)
39
+ st.markdown("<h4 style='text-align: center;'>(Demo)</h4>", unsafe_allow_html=True)
40
  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)
41
  # st.session_state['API_Key']= st.text_input("First, to get it work, put your OpenAI API Key here please, the system will enter for you automatically.",type="password")
42