Update modules/ui/user_page.py
Browse files- modules/ui/user_page.py +5 -3
modules/ui/user_page.py
CHANGED
@@ -22,8 +22,9 @@ from ..chatbot import display_sidebar_chat
|
|
22 |
|
23 |
# Students activities
|
24 |
from ..studentact.student_activities_v2 import display_student_activities
|
25 |
-
|
26 |
-
from ..studentact.
|
|
|
27 |
|
28 |
|
29 |
##Importaciones desde la configuraci贸n de bases datos #######
|
@@ -63,7 +64,7 @@ from ..database.semantic_mongo_db import (
|
|
63 |
get_student_semantic_data
|
64 |
)
|
65 |
|
66 |
-
|
67 |
|
68 |
from ..database.chat_mongo_db import store_chat_history, get_chat_history
|
69 |
|
@@ -183,6 +184,7 @@ def user_page(lang_code, t):
|
|
183 |
# Inicializar estados para todos los tabs
|
184 |
if 'tab_states' not in st.session_state:
|
185 |
st.session_state.tab_states = {
|
|
|
186 |
'semantic_active': False,
|
187 |
'discourse_active': False,
|
188 |
'activities_active': False,
|
|
|
22 |
|
23 |
# Students activities
|
24 |
from ..studentact.student_activities_v2 import display_student_activities
|
25 |
+
|
26 |
+
#from ..studentact.current_situation_interface import display_current_situation_interface
|
27 |
+
#from ..studentact.current_situation_analysis import analyze_text_dimensions
|
28 |
|
29 |
|
30 |
##Importaciones desde la configuraci贸n de bases datos #######
|
|
|
64 |
get_student_semantic_data
|
65 |
)
|
66 |
|
67 |
+
from ..database.semantic_mongo_live_db import get_student_semantic_live_analysis
|
68 |
|
69 |
from ..database.chat_mongo_db import store_chat_history, get_chat_history
|
70 |
|
|
|
184 |
# Inicializar estados para todos los tabs
|
185 |
if 'tab_states' not in st.session_state:
|
186 |
st.session_state.tab_states = {
|
187 |
+
'semantic_live_active': False,
|
188 |
'semantic_active': False,
|
189 |
'discourse_active': False,
|
190 |
'activities_active': False,
|