Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,10 @@ def get_conversation_chain(vectorstore):
|
|
57 |
|
58 |
|
59 |
def handle_userinput(user_question):
|
60 |
-
response = st.session_state.conversation
|
|
|
|
|
|
|
61 |
st.session_state.chat_history = response['chat_history']
|
62 |
|
63 |
for i, message in enumerate(st.session_state.chat_history):
|
|
|
57 |
|
58 |
|
59 |
def handle_userinput(user_question):
|
60 |
+
response = st.session_state.conversation
|
61 |
+
reply = response.run(user_question)
|
62 |
+
with st.chat_message("assistant"):
|
63 |
+
st.write(reply)
|
64 |
st.session_state.chat_history = response['chat_history']
|
65 |
|
66 |
for i, message in enumerate(st.session_state.chat_history):
|