gtaraja commited on
Commit
b062102
1 Parent(s): 2cbd3e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -65,7 +65,7 @@ def handle_userinput(user_question):
65
 
66
  def main():
67
  load_dotenv()
68
- st.set_page_config(page_title="Chat with multiple PDFs",
69
  page_icon=":books:")
70
  st.write(css, unsafe_allow_html=True)
71
 
@@ -74,8 +74,8 @@ def main():
74
  if "chat_history" not in st.session_state:
75
  st.session_state.chat_history = None
76
 
77
- st.header("Chat with multiple PDFs :books:")
78
- user_question = st.text_input("Ask a question about your documents:")
79
  if user_question:
80
  handle_userinput(user_question)
81
 
 
65
 
66
  def main():
67
  load_dotenv()
68
+ st.set_page_config(page_title="Retail-GPT",
69
  page_icon=":books:")
70
  st.write(css, unsafe_allow_html=True)
71
 
 
74
  if "chat_history" not in st.session_state:
75
  st.session_state.chat_history = None
76
 
77
+ st.header("Get Information from PDF Files")
78
+ user_question = st.text_input("Enter your Question:")
79
  if user_question:
80
  handle_userinput(user_question)
81