Update modules/ui/ui.py
Browse files- modules/ui/ui.py +7 -7
modules/ui/ui.py
CHANGED
@@ -23,7 +23,7 @@ logger = logging.getLogger(__name__)
|
|
23 |
|
24 |
from ..modules.auth.auth import authenticate_user, register_user
|
25 |
|
26 |
-
from ..
|
27 |
get_student_data,
|
28 |
store_application_request,
|
29 |
store_morphosyntax_result,
|
@@ -35,10 +35,10 @@ from ..modules.database.database import (
|
|
35 |
)
|
36 |
|
37 |
#Importaciones locales de uiadmin
|
38 |
-
from ..
|
39 |
|
40 |
#Importaciones locales funciones de análisis
|
41 |
-
from ..
|
42 |
generate_arc_diagram,
|
43 |
get_repeated_words_colors,
|
44 |
highlight_repeated_words,
|
@@ -46,11 +46,11 @@ from ..modules.text_analysis.morpho_analysis import (
|
|
46 |
POS_TRANSLATIONS
|
47 |
)
|
48 |
|
49 |
-
from ..
|
50 |
-
from ..
|
51 |
-
from ..
|
52 |
|
53 |
-
from ..
|
54 |
|
55 |
##################################################################################################
|
56 |
def initialize_session_state():
|
|
|
23 |
|
24 |
from ..modules.auth.auth import authenticate_user, register_user
|
25 |
|
26 |
+
from ..database.database import (
|
27 |
get_student_data,
|
28 |
store_application_request,
|
29 |
store_morphosyntax_result,
|
|
|
35 |
)
|
36 |
|
37 |
#Importaciones locales de uiadmin
|
38 |
+
from ..admin.admin_ui import admin_page
|
39 |
|
40 |
#Importaciones locales funciones de análisis
|
41 |
+
from ..text_analysis.morpho_analysis import (
|
42 |
generate_arc_diagram,
|
43 |
get_repeated_words_colors,
|
44 |
highlight_repeated_words,
|
|
|
46 |
POS_TRANSLATIONS
|
47 |
)
|
48 |
|
49 |
+
from ..analysis_text.semantic_analysis import visualize_semantic_relations, perform_semantic_analysis
|
50 |
+
from ..analysis.discourse_analysis import compare_semantic_analysis, perform_discourse_analysis
|
51 |
+
from ..chatbot.chatbot import initialize_chatbot, get_chatbot_response
|
52 |
|
53 |
+
from ..email.email import send_email_notification
|
54 |
|
55 |
##################################################################################################
|
56 |
def initialize_session_state():
|