tony346 commited on
Commit
d55c1c9
1 Parent(s): ecba657

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -94,7 +94,7 @@ def handle_userinput(user_question):
94
 
95
  def main():
96
  load_dotenv()
97
- st.set_page_config(page_title="Chat with multiple PDFs",
98
  page_icon=":books:")
99
  st.write(css, unsafe_allow_html=True)
100
 
@@ -103,7 +103,7 @@ def main():
103
  if "chat_history" not in st.session_state:
104
  st.session_state.chat_history = None
105
 
106
- st.header("Chat with multiple PDFs :books:")
107
  user_question = st.text_input("Ask a question about your documents:")
108
  if user_question:
109
  handle_userinput(user_question)
 
94
 
95
  def main():
96
  load_dotenv()
97
+ st.set_page_config(page_title="Chat with multiple Files",
98
  page_icon=":books:")
99
  st.write(css, unsafe_allow_html=True)
100
 
 
103
  if "chat_history" not in st.session_state:
104
  st.session_state.chat_history = None
105
 
106
+ st.header("Chat with multiple Files:")
107
  user_question = st.text_input("Ask a question about your documents:")
108
  if user_question:
109
  handle_userinput(user_question)