CosmoAI commited on
Commit
5ef09d6
·
1 Parent(s): bc21006

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
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({'question': user_question})
 
 
 
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):