CCockrum commited on
Commit
93a4e54
·
verified ·
1 Parent(s): 8714739

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -165,7 +165,10 @@ for message in st.session_state.chat_history:
165
  if message["role"] == "user":
166
  st.markdown(f"<div class='user-msg'><strong>You:</strong> {message['content']}</div>", unsafe_allow_html=True)
167
  else:
168
- st.markdown(f"<
 
 
 
169
 
170
 
171
  # Sidebar for chat reset
 
165
  if message["role"] == "user":
166
  st.markdown(f"<div class='user-msg'><strong>You:</strong> {message['content']}</div>", unsafe_allow_html=True)
167
  else:
168
+ st.markdown(f"<div class='assistant-msg'><strong>Bot:</strong> {message['content']}</div>", unsafe_allow_html=True)
169
+
170
+ st.markdown("</div>", unsafe_allow_html=True)
171
+
172
 
173
 
174
  # Sidebar for chat reset