sschet commited on
Commit
96325a6
1 Parent(s): 48b3775

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def main():
19
 
20
  # Initialize chat history in the first run
21
  if 'chat_history' not in st.session_state:
22
- st.session_state['chat_history'] = []
23
 
24
  st.session_state['chat_history'] += "<div style='color: blue;'>You: </div>"
25
  st.markdown(st.session_state['chat_history'], unsafe_allow_html=True)
 
19
 
20
  # Initialize chat history in the first run
21
  if 'chat_history' not in st.session_state:
22
+ st.session_state['chat_history'] = ''
23
 
24
  st.session_state['chat_history'] += "<div style='color: blue;'>You: </div>"
25
  st.markdown(st.session_state['chat_history'], unsafe_allow_html=True)