Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -73,11 +73,17 @@ if text_input:
|
|
73 |
# Use different colors based on the entity's type
|
74 |
color = "#8ef" # Default color
|
75 |
if entity_type == "Place":
|
76 |
-
color = "#
|
77 |
elif entity_type == "Organization":
|
78 |
-
color = "#
|
79 |
elif entity_type == "Person":
|
80 |
-
color = "#
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
entity_annotation = (entity_string, entity_info["id"], color)
|
83 |
text_input = text_input.replace(entity_string, f'{{{str(entity_annotation)}}}', 1)
|
|
|
73 |
# Use different colors based on the entity's type
|
74 |
color = "#8ef" # Default color
|
75 |
if entity_type == "Place":
|
76 |
+
color = "#8AC7DB"
|
77 |
elif entity_type == "Organization":
|
78 |
+
color = "#ADD8E6"
|
79 |
elif entity_type == "Person":
|
80 |
+
color = "#67B7D1"
|
81 |
+
elif entity_type == "Product":
|
82 |
+
color = "#007aff"
|
83 |
+
elif entity_type == "CreativeWork":
|
84 |
+
color = "#00BFFF"
|
85 |
+
elif entity_type == "Event":
|
86 |
+
color = "#1E90FF"
|
87 |
|
88 |
entity_annotation = (entity_string, entity_info["id"], color)
|
89 |
text_input = text_input.replace(entity_string, f'{{{str(entity_annotation)}}}', 1)
|