AIdeaText commited on
Commit
e986dd0
1 Parent(s): d46d668

Update modules/__init__.py

Browse files
Files changed (1) hide show
  1. modules/__init__.py +9 -4
modules/__init__.py CHANGED
@@ -1,16 +1,21 @@
1
  # modules/__init__.py
2
 
3
  from .auth import authenticate_user, register_user, get_user_role
4
- from .database import initialize_mongodb_connection, get_student_data, store_analysis_result
5
- from .ui import login_register_page, login_form, register_form, display_chat_interface, display_student_progress, display_text_analysis_interface
 
 
 
6
  from .morpho_analysis import get_repeated_words_colors, highlight_repeated_words, POS_COLORS, POS_TRANSLATIONS
 
7
  from .syntax_analysis import visualize_syntax
 
8
  from .spacy_utils import load_spacy_models
9
 
10
  __all__ = [
11
  'authenticate_user', 'register_user', 'get_user_role',
12
- 'initialize_mongodb_connection', 'get_student_data', 'store_analysis_result',
13
- 'login_register_page', 'login_form', 'register_form', 'display_chat_interface',
14
  'display_student_progress', 'display_text_analysis_interface',
15
  'get_repeated_words_colors', 'highlight_repeated_words', 'POS_COLORS', 'POS_TRANSLATIONS',
16
  'visualize_syntax', 'load_spacy_models'
 
1
  # modules/__init__.py
2
 
3
  from .auth import authenticate_user, register_user, get_user_role
4
+
5
+ from .database import initialize_mongodb_connection, get_student_data, store_morphosyntax_result, store_semantic_result
6
+
7
+ from .ui import login_register_page, login_form, register_form, display_chat_interface, display_student_progress, display_morphosyntax_analysis_interface, display_semantic_analysis_interface
8
+
9
  from .morpho_analysis import get_repeated_words_colors, highlight_repeated_words, POS_COLORS, POS_TRANSLATIONS
10
+
11
  from .syntax_analysis import visualize_syntax
12
+
13
  from .spacy_utils import load_spacy_models
14
 
15
  __all__ = [
16
  'authenticate_user', 'register_user', 'get_user_role',
17
+ 'initialize_mongodb_connection', 'get_student_data', 'store_morphosyntax_result', 'store_semantic_result'
18
+ 'login_register_page', 'login_form', 'register_form', 'display_chat_interface', 'display_morphosyntax_analysis_interface', 'display_semantic_analysis_interface'
19
  'display_student_progress', 'display_text_analysis_interface',
20
  'get_repeated_words_colors', 'highlight_repeated_words', 'POS_COLORS', 'POS_TRANSLATIONS',
21
  'visualize_syntax', 'load_spacy_models'