ArturG9 commited on
Commit
e8d49fc
1 Parent(s): d85e8ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -150,7 +150,7 @@ def main():
150
  return vectorstore , conversation
151
 
152
 
153
- if conversation not None:
154
  st.subheader("Chat Bot")
155
  if user_question := st.text_input("Ask a question about your documents:"):
156
  handle_userinput(user_question, vectorstore, conversation)
 
150
  return vectorstore , conversation
151
 
152
 
153
+ if conversation is not None:
154
  st.subheader("Chat Bot")
155
  if user_question := st.text_input("Ask a question about your documents:"):
156
  handle_userinput(user_question, vectorstore, conversation)