MilanM commited on
Commit
5f19541
·
verified ·
1 Parent(s): c811446

Update neo_sages4.py

Browse files
Files changed (1) hide show
  1. neo_sages4.py +2 -0
neo_sages4.py CHANGED
@@ -54,6 +54,8 @@ def check_password():
54
  return True
55
 
56
  def initialize_session_state():
 
 
57
  if 'chat_history_1' not in st.session_state:
58
  st.session_state.chat_history_1 = []
59
  if 'chat_history_2' not in st.session_state:
 
54
  return True
55
 
56
  def initialize_session_state():
57
+ if 'chat_history' not in st.session_state:
58
+ st.session_state.chat_history = []
59
  if 'chat_history_1' not in st.session_state:
60
  st.session_state.chat_history_1 = []
61
  if 'chat_history_2' not in st.session_state: