tony346 commited on
Commit
cc3fe31
1 Parent(s): bb809f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -56,7 +56,7 @@ def get_conversation_chain(vectorstore):
56
 
57
 
58
  def handle_userinput(user_question):
59
- response = st.session_state.conversation({'query': user_question})
60
  st.session_state.chat_history = response['chat_history']
61
 
62
  for i, message in enumerate(st.session_state.chat_history):
 
56
 
57
 
58
  def handle_userinput(user_question):
59
+ response = st.session_state.conversation({'question': user_question})
60
  st.session_state.chat_history = response['chat_history']
61
 
62
  for i, message in enumerate(st.session_state.chat_history):