Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -134,6 +134,7 @@ def get_conversation_chain(vectorstore):
|
|
134 |
|
135 |
|
136 |
def handle_userinput(user_question):
|
|
|
137 |
response = st.session_state.conversation({'question': user_question})
|
138 |
st.session_state.chat_history = response['chat_history']
|
139 |
|
|
|
134 |
|
135 |
|
136 |
def handle_userinput(user_question):
|
137 |
+
print('user_question => ', user_question)
|
138 |
response = st.session_state.conversation({'question': user_question})
|
139 |
st.session_state.chat_history = response['chat_history']
|
140 |
|