AlephBeth-AI commited on
Commit
3d416f8
·
verified ·
1 Parent(s): 0154f71

Fix emoji encoding - replace surrogate pairs with proper Unicode escape

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ LABEL_COLORS = {
27
  LABEL_EMOJIS = {
28
  "Benign": "\u2705",
29
  "Injection": "\u26a0\ufe0f",
30
- "Jailbreak": "\ud83d\udee8\ufe0f",
31
  }
32
 
33
 
 
27
  LABEL_EMOJIS = {
28
  "Benign": "\u2705",
29
  "Injection": "\u26a0\ufe0f",
30
+ "Jailbreak": "\U0001f6e8\ufe0f",
31
  }
32
 
33