eagle0504 commited on
Commit
786aa59
·
verified ·
1 Parent(s): 5cb42c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -108,7 +108,7 @@ if st.session_state.logged_in:
108
  You will then make a suggestion of what type of GPU or instance is the best for the user.
109
  """}
110
  )
111
- bot.history.append(st.session_state.messages.copy()) # Update (append) history from messages
112
  # bot.history = st.session_state.messages.copy() # Update history from messages
113
  response = bot.generate_response(prompt)
114
 
 
108
  You will then make a suggestion of what type of GPU or instance is the best for the user.
109
  """}
110
  )
111
+ bot.history += st.session_state.messages.copy() # Update (append) history from messages
112
  # bot.history = st.session_state.messages.copy() # Update history from messages
113
  response = bot.generate_response(prompt)
114