CCockrum commited on
Commit
5b0e575
Β·
verified Β·
1 Parent(s): 15aede2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -164,10 +164,9 @@ st.title("πŸš€ HAL - NASA AI Assistant")
164
 
165
  # βœ… Justify all chatbot responses
166
  st.markdown("""
167
- st.markdown("""
168
  <style>
169
  .user-msg, .assistant-msg {
170
- padding: 11px;
171
  border-radius: 10px;
172
  margin-bottom: 5px;
173
  width: fit-content;
@@ -180,7 +179,7 @@ st.markdown("""
180
  @media (max-width: 600px) { .user-msg, .assistant-msg { font-size: 16px; max-width: 100%; } }
181
  </style>
182
  """, unsafe_allow_html=True)
183
- """, unsafe_allow_html=True)
184
 
185
  # βœ… Display Chat History
186
  for message in st.session_state.chat_history:
 
164
 
165
  # βœ… Justify all chatbot responses
166
  st.markdown("""
 
167
  <style>
168
  .user-msg, .assistant-msg {
169
+ padding: 10px;
170
  border-radius: 10px;
171
  margin-bottom: 5px;
172
  width: fit-content;
 
179
  @media (max-width: 600px) { .user-msg, .assistant-msg { font-size: 16px; max-width: 100%; } }
180
  </style>
181
  """, unsafe_allow_html=True)
182
+
183
 
184
  # βœ… Display Chat History
185
  for message in st.session_state.chat_history: