Spaces:
Running
Running
Update modules/semantic/semantic_interface.py
Browse files
modules/semantic/semantic_interface.py
CHANGED
@@ -140,8 +140,10 @@ def display_semantic_interface(lang_code, nlp_models, semantic_t):
|
|
140 |
if st.button(
|
141 |
"💬 " + semantic_t.get('semantic_virtual_agent_button', 'Analizar con Agente Virtual'),
|
142 |
key="activate_semantic_agent",
|
143 |
-
use_container_width=True
|
|
|
144 |
):
|
|
|
145 |
# Obtener el texto analizado
|
146 |
text_content = st.session_state.semantic_state.get('text_content', "")
|
147 |
|
|
|
140 |
if st.button(
|
141 |
"💬 " + semantic_t.get('semantic_virtual_agent_button', 'Analizar con Agente Virtual'),
|
142 |
key="activate_semantic_agent",
|
143 |
+
use_container_width=True,
|
144 |
+
type="primary"
|
145 |
):
|
146 |
+
|
147 |
# Obtener el texto analizado
|
148 |
text_content = st.session_state.semantic_state.get('text_content', "")
|
149 |
|