DeepSoft-Tech commited on
Commit
b97662d
β€’
1 Parent(s): 801aed6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -71,12 +71,12 @@ def handle_userinput(user_question:str):
71
 
72
  def main():
73
  st.set_page_config(
74
- page_title="Chat with a Bot that tries to answer questions about multiple PDFs",
75
  page_icon=":books:",
76
  )
77
 
78
- st.markdown("# Chat with a Bot")
79
- st.markdown("This bot tries to answer questions about multiple PDFs. Let the processing of the PDF finish before adding your question. πŸ™πŸΎ")
80
 
81
  st.write(css, unsafe_allow_html=True)
82
 
@@ -87,8 +87,8 @@ def main():
87
  st.session_state.chat_history = None
88
 
89
 
90
- st.header("Chat with a Bot πŸ€–πŸ¦Ύ that tries to answer questions about multiple PDFs :books:")
91
- user_question = st.text_input("Ask a question about your documents:")
92
  if user_question:
93
  handle_userinput(user_question)
94
 
 
71
 
72
  def main():
73
  st.set_page_config(
74
+ page_title="Chat with your Document!",
75
  page_icon=":books:",
76
  )
77
 
78
+ #st.markdown("# Chat with a Bot")
79
+ #st.markdown("This bot tries to answer questions about multiple PDFs. Let the processing of the PDF finish before adding your question. πŸ™πŸΎ")
80
 
81
  st.write(css, unsafe_allow_html=True)
82
 
 
87
  st.session_state.chat_history = None
88
 
89
 
90
+ st.header("Chat with your Document! πŸ€–")
91
+ user_question = st.text_input("Ask a question related to your document:")
92
  if user_question:
93
  handle_userinput(user_question)
94