Noobian commited on
Commit
7fe7a72
·
1 Parent(s): 7c6b9f9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -66,7 +66,7 @@ def handle_userinput(user_question):
66
 
67
  def main():
68
  load_dotenv()
69
- st.set_page_config(page_title="Chat with multiple PDFs",
70
  page_icon=":books:")
71
  st.write(css, unsafe_allow_html=True)
72
 
@@ -75,7 +75,7 @@ def main():
75
  if "chat_history" not in st.session_state:
76
  st.session_state.chat_history = None
77
 
78
- st.header("Chat with multiple PDFs :books:")
79
  user_question = st.text_input("Ask a question about your documents:")
80
  if user_question:
81
  handle_userinput(user_question)
 
66
 
67
  def main():
68
  load_dotenv()
69
+ st.set_page_config(page_title="Chat with your meeting notes!",
70
  page_icon=":books:")
71
  st.write(css, unsafe_allow_html=True)
72
 
 
75
  if "chat_history" not in st.session_state:
76
  st.session_state.chat_history = None
77
 
78
+ st.header("Chat with your meeting notes! :books:")
79
  user_question = st.text_input("Ask a question about your documents:")
80
  if user_question:
81
  handle_userinput(user_question)