Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -127,20 +127,18 @@ def render_message(history):
|
|
127 |
for user_message, assistant_message, user_profile, assistant_profile, user_pic, assistant_pic in history:
|
128 |
if user_message and ("user", user_message) not in seen_messages:
|
129 |
seen_messages.add(("user", user_message))
|
130 |
-
user_message_html = user_message.replace('\n', '<br>')
|
131 |
messages_html += f"""
|
132 |
<div style='display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 10px;'>
|
133 |
<img src='{user_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-bottom: 5px;'>
|
134 |
-
<div style='color: white; white-space: pre-wrap;'>{
|
135 |
</div>"""
|
136 |
|
137 |
if assistant_message and ("assistant", assistant_message) not in seen_messages:
|
138 |
seen_messages.add(("assistant", assistant_message))
|
139 |
-
assistant_message_html = assistant_message.replace('\n', '<br>')
|
140 |
messages_html += f"""
|
141 |
<div style='display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 10px;'>
|
142 |
<img src='{assistant_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-bottom: 5px;'>
|
143 |
-
<div style='color: white; white-space: pre-wrap;'>{
|
144 |
</div>"""
|
145 |
|
146 |
messages_html += "</div></div>"
|
@@ -151,16 +149,16 @@ def render_message(history):
|
|
151 |
tex: {
|
152 |
inlineMath: [['$', '$'], ['\\(', '\\)']],
|
153 |
displayMath: [['$$', '$$'], ['\\[', '\\]']]
|
154 |
-
}
|
|
|
155 |
};
|
156 |
</script>
|
157 |
-
<script type="text/javascript"
|
158 |
-
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/tex-
|
159 |
"""
|
160 |
return messages_html + mathjax_script
|
161 |
|
162 |
|
163 |
-
|
164 |
def escape_html(unsafe_text):
|
165 |
escaped_text = ''.join(f"&#{ord(char)};" if char not in ('\n', '\r') else '<br>' for char in unsafe_text)
|
166 |
return escaped_text
|
|
|
127 |
for user_message, assistant_message, user_profile, assistant_profile, user_pic, assistant_pic in history:
|
128 |
if user_message and ("user", user_message) not in seen_messages:
|
129 |
seen_messages.add(("user", user_message))
|
|
|
130 |
messages_html += f"""
|
131 |
<div style='display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 10px;'>
|
132 |
<img src='{user_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-bottom: 5px;'>
|
133 |
+
<div style='color: white; white-space: pre-wrap;'>{user_message}</div>
|
134 |
</div>"""
|
135 |
|
136 |
if assistant_message and ("assistant", assistant_message) not in seen_messages:
|
137 |
seen_messages.add(("assistant", assistant_message))
|
|
|
138 |
messages_html += f"""
|
139 |
<div style='display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 10px;'>
|
140 |
<img src='{assistant_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-bottom: 5px;'>
|
141 |
+
<div style='color: white; white-space: pre-wrap;'>{assistant_message}</div>
|
142 |
</div>"""
|
143 |
|
144 |
messages_html += "</div></div>"
|
|
|
149 |
tex: {
|
150 |
inlineMath: [['$', '$'], ['\\(', '\\)']],
|
151 |
displayMath: [['$$', '$$'], ['\\[', '\\]']]
|
152 |
+
},
|
153 |
+
svg: { fontCache: 'global' }
|
154 |
};
|
155 |
</script>
|
156 |
+
<script type="text/javascript" async
|
157 |
+
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/tex-svg.js"></script>
|
158 |
"""
|
159 |
return messages_html + mathjax_script
|
160 |
|
161 |
|
|
|
162 |
def escape_html(unsafe_text):
|
163 |
escaped_text = ''.join(f"&#{ord(char)};" if char not in ('\n', '\r') else '<br>' for char in unsafe_text)
|
164 |
return escaped_text
|