Spaces:
Sleeping
Sleeping
Fix emoji encoding - replace surrogate pairs with proper Unicode escape
Browse files
app.py
CHANGED
|
@@ -27,7 +27,7 @@ LABEL_COLORS = {
|
|
| 27 |
LABEL_EMOJIS = {
|
| 28 |
"Benign": "\u2705",
|
| 29 |
"Injection": "\u26a0\ufe0f",
|
| 30 |
-
"Jailbreak": "\
|
| 31 |
}
|
| 32 |
|
| 33 |
|
|
|
|
| 27 |
LABEL_EMOJIS = {
|
| 28 |
"Benign": "\u2705",
|
| 29 |
"Injection": "\u26a0\ufe0f",
|
| 30 |
+
"Jailbreak": "\U0001f6e8\ufe0f",
|
| 31 |
}
|
| 32 |
|
| 33 |
|