AIdeaText commited on
Commit
67ccc01
1 Parent(s): e986dd0

Update modules/__init__.py

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