Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -67,7 +67,7 @@ def get_conversation_chain(vectorstore:FAISS) -> ConversationalRetrievalChain:
|
|
67 |
|
68 |
def handle_userinput(user_question:str):
|
69 |
response = st.session_state.conversation({"question": user_question})
|
70 |
-
st.session_state.chat_history = response["chat_history"]
|
71 |
|
72 |
for i, message in enumerate(st.session_state.chat_history):
|
73 |
if i % 2 == 0:
|
|
|
67 |
|
68 |
def handle_userinput(user_question:str):
|
69 |
response = st.session_state.conversation({"question": user_question})
|
70 |
+
#st.session_state.chat_history = response["chat_history"]
|
71 |
|
72 |
for i, message in enumerate(st.session_state.chat_history):
|
73 |
if i % 2 == 0:
|