tony346 commited on
Commit
f51a106
·
1 Parent(s): fd71696

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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