Update app.py
Browse files
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)
|