RomZay commited on
Commit
9f6ce21
·
verified ·
1 Parent(s): 1359a02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -96,7 +96,7 @@ def render_message(history):
96
  messages_html += f"""
97
  <div style='display: flex; align-items: center; margin-bottom: 10px;'>
98
  <img src='{user_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;'>
99
- <span style='color: white;'><b>{user_profile}:</b> {user_message_html}</span>
100
  </div><br>"""
101
 
102
  if assistant_message:
@@ -104,7 +104,7 @@ def render_message(history):
104
  messages_html += f"""
105
  <div style='display: flex; align-items: center; margin-bottom: 10px;'>
106
  <img src='{assistant_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;'>
107
- <span style='color: white;'><b>{assistant_profile}:</b> {assistant_message_html}</span>
108
  </div><br>"""
109
 
110
  messages_html += "</div></div>"
 
96
  messages_html += f"""
97
  <div style='display: flex; align-items: center; margin-bottom: 10px;'>
98
  <img src='{user_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;'>
99
+ <span style='color: white;'>{user_message_html}</span>
100
  </div><br>"""
101
 
102
  if assistant_message:
 
104
  messages_html += f"""
105
  <div style='display: flex; align-items: center; margin-bottom: 10px;'>
106
  <img src='{assistant_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;'>
107
+ <span style='color: white;'>{assistant_message_html}</span>
108
  </div><br>"""
109
 
110
  messages_html += "</div></div>"