Update modules/ui/ui.py
Browse files- modules/ui/ui.py +1 -1
modules/ui/ui.py
CHANGED
@@ -627,7 +627,7 @@ def display_semantic_analysis_interface(nlp_models, lang_code):
|
|
627 |
# Mostrar conceptos clave
|
628 |
with st.expander(t['key_concepts'], expanded=True):
|
629 |
key_concepts_text = " ".join([f"[[{concept}]]" for concept, _ in analysis_result['key_concepts']])
|
630 |
-
st.markdown(
|
631 |
|
632 |
# Mostrar entidades identificadas
|
633 |
with st.expander(t['identified_entities'], expanded=True):
|
|
|
627 |
# Mostrar conceptos clave
|
628 |
with st.expander(t['key_concepts'], expanded=True):
|
629 |
key_concepts_text = " ".join([f"[[{concept}]]" for concept, _ in analysis_result['key_concepts']])
|
630 |
+
st.markdown(key_concepts_text)
|
631 |
|
632 |
# Mostrar entidades identificadas
|
633 |
with st.expander(t['identified_entities'], expanded=True):
|