Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -243,6 +243,9 @@ def run_entity_exploration():
|
|
243 |
|
244 |
# Remove duplicates and sort
|
245 |
entities = sorted(set(entities))
|
|
|
|
|
|
|
246 |
|
247 |
# Create a dropdown selection box
|
248 |
selected_entity = st.selectbox("Select Entity", entities)
|
|
|
243 |
|
244 |
# Remove duplicates and sort
|
245 |
entities = sorted(set(entities))
|
246 |
+
|
247 |
+
# Debug output: Confirm loaded entities
|
248 |
+
st.write("Loaded entities:", entities)
|
249 |
|
250 |
# Create a dropdown selection box
|
251 |
selected_entity = st.selectbox("Select Entity", entities)
|