Update modules/__init__.py
Browse files- modules/__init__.py +17 -9
modules/__init__.py
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
# modules/__init__.py
|
2 |
|
3 |
-
from .auth import authenticate_user, register_user
|
4 |
-
|
|
|
5 |
initialize_mongodb_connection,
|
6 |
get_student_data,
|
7 |
store_application_request,
|
@@ -12,7 +13,8 @@ from .database import (
|
|
12 |
create_admin_user,
|
13 |
create_student_user
|
14 |
)
|
15 |
-
|
|
|
16 |
main,
|
17 |
login_register_page,
|
18 |
login_form,
|
@@ -24,24 +26,30 @@ from .ui import (
|
|
24 |
display_discourse_analysis_interface,
|
25 |
display_chatbot_interface
|
26 |
)
|
27 |
-
|
28 |
-
from .
|
|
|
|
|
29 |
get_repeated_words_colors,
|
30 |
highlight_repeated_words,
|
31 |
POS_COLORS,
|
32 |
POS_TRANSLATIONS
|
33 |
)
|
34 |
-
|
|
|
35 |
visualize_semantic_relations,
|
36 |
perform_semantic_analysis,
|
37 |
create_semantic_graph
|
38 |
)
|
39 |
-
|
|
|
40 |
perform_discourse_analysis,
|
41 |
compare_semantic_analysis
|
42 |
)
|
43 |
-
|
44 |
-
from .
|
|
|
|
|
45 |
initialize_chatbot,
|
46 |
get_chatbot_response,
|
47 |
ClaudeAPIChat # Nueva clase
|
|
|
1 |
# modules/__init__.py
|
2 |
|
3 |
+
from modules.auth.auth import authenticate_user, register_user
|
4 |
+
|
5 |
+
from modules.database.database import (
|
6 |
initialize_mongodb_connection,
|
7 |
get_student_data,
|
8 |
store_application_request,
|
|
|
13 |
create_admin_user,
|
14 |
create_student_user
|
15 |
)
|
16 |
+
|
17 |
+
from modules.ui.ui import (
|
18 |
main,
|
19 |
login_register_page,
|
20 |
login_form,
|
|
|
26 |
display_discourse_analysis_interface,
|
27 |
display_chatbot_interface
|
28 |
)
|
29 |
+
|
30 |
+
from modules.admin.admin_ui import admin_page # Añade esta línea
|
31 |
+
|
32 |
+
from modules.analysis_text.morpho_analysis import (
|
33 |
get_repeated_words_colors,
|
34 |
highlight_repeated_words,
|
35 |
POS_COLORS,
|
36 |
POS_TRANSLATIONS
|
37 |
)
|
38 |
+
|
39 |
+
from modules.analysis_text.semantic_analysis import (
|
40 |
visualize_semantic_relations,
|
41 |
perform_semantic_analysis,
|
42 |
create_semantic_graph
|
43 |
)
|
44 |
+
|
45 |
+
from modules.analysis_text.discourse_analysis import (
|
46 |
perform_discourse_analysis,
|
47 |
compare_semantic_analysis
|
48 |
)
|
49 |
+
|
50 |
+
from modules.utils.spacy_utils import load_spacy_models
|
51 |
+
|
52 |
+
from modules.chatbot.chatbot import (
|
53 |
initialize_chatbot,
|
54 |
get_chatbot_response,
|
55 |
ClaudeAPIChat # Nueva clase
|