# modules/discourse/discourse/discourse_interface.py import streamlit as st import pandas as pd import plotly.graph_objects as go import logging from ..utils.widget_utils import generate_unique_key from .discourse_process import perform_discourse_analysis from ..database.chat_mongo_db import store_chat_history from ..database.discourse_mongo_db import store_student_discourse_result logger = logging.getLogger(__name__) ############################################################################################# def display_discourse_results(result, lang_code, discourse_t): """ Muestra los resultados del análisis del discurso con conceptos en formato horizontal """ if not result.get('success'): st.warning(discourse_t.get('no_results', 'No hay resultados disponibles')) return # Estilo CSS para los conceptos horizontales st.markdown(""" """, unsafe_allow_html=True) col1, col2 = st.columns(2) # Documento 1 with col1: with st.expander(discourse_t.get('doc1_title', 'Documento 1'), expanded=True): st.subheader(discourse_t.get('key_concepts', 'Conceptos Clave')) if 'key_concepts1' in result: # Crear HTML para conceptos horizontales concepts_html = '
' for concept, freq in result['key_concepts1']: concepts_html += f"""
{concept} ({freq:.2f})
""" concepts_html += '
' st.markdown(concepts_html, unsafe_allow_html=True) if 'graph1' in result: with st.container(): st.markdown('
', unsafe_allow_html=True) st.pyplot(result['graph1']) st.markdown('
', unsafe_allow_html=True) else: st.warning(discourse_t.get('graph_not_available', 'Gráfico no disponible')) else: st.warning(discourse_t.get('concepts_not_available', 'Conceptos no disponibles')) # Documento 2 with col2: with st.expander(discourse_t.get('doc2_title', 'Documento 2'), expanded=True): st.subheader(discourse_t.get('key_concepts', 'Conceptos Clave')) if 'key_concepts2' in result: # Crear HTML para conceptos horizontales concepts_html = '
' for concept, freq in result['key_concepts2']: concepts_html += f"""
{concept} ({freq:.2f})
""" concepts_html += '
' st.markdown(concepts_html, unsafe_allow_html=True) if 'graph2' in result: with st.container(): st.markdown('
', unsafe_allow_html=True) st.pyplot(result['graph2']) st.markdown('
', unsafe_allow_html=True) else: st.warning(discourse_t.get('graph_not_available', 'Gráfico no disponible')) else: st.warning(discourse_t.get('concepts_not_available', 'Conceptos no disponibles')) # Nota informativa sobre la comparación st.info(discourse_t.get('comparison_note', 'La funcionalidad de comparación detallada estará disponible en una próxima actualización.')) ########################################################################################## def display_discourse_results(result, lang_code, discourse_t): """ Muestra los resultados del análisis del discurso """ if not result.get('success'): st.warning(discourse_t.get('no_results', 'No hay resultados disponibles')) return col1, col2 = st.columns(2) # Documento 1 with col1: with st.expander(discourse_t.get('doc1_title', 'Documento 1'), expanded=True): st.subheader(discourse_t.get('key_concepts', 'Conceptos Clave')) if 'key_concepts1' in result: df1 = pd.DataFrame(result['key_concepts1'], columns=['Concepto', 'Frecuencia']) df1['Frecuencia'] = df1['Frecuencia'].round(2) st.table(df1) if 'graph1' in result: st.pyplot(result['graph1']) else: st.warning(discourse_t.get('graph_not_available', 'Gráfico no disponible')) else: st.warning(discourse_t.get('concepts_not_available', 'Conceptos no disponibles')) # Documento 2 with col2: with st.expander(discourse_t.get('doc2_title', 'Documento 2'), expanded=True): st.subheader(discourse_t.get('key_concepts', 'Conceptos Clave')) if 'key_concepts2' in result: df2 = pd.DataFrame(result['key_concepts2'], columns=['Concepto', 'Frecuencia']) df2['Frecuencia'] = df2['Frecuencia'].round(2) st.table(df2) if 'graph2' in result: st.pyplot(result['graph2']) else: st.warning(discourse_t.get('graph_not_available', 'Gráfico no disponible')) else: st.warning(discourse_t.get('concepts_not_available', 'Conceptos no disponibles')) # Nota informativa sobre la comparación st.info(discourse_t.get('comparison_note', 'La funcionalidad de comparación detallada estará disponible en una próxima actualización.'))