AIdeaText commited on
Commit
995ef83
1 Parent(s): 6e99cf7

Create __init__.py

Browse files
Files changed (1) hide show
  1. modules/__init__.py +17 -0
modules/__init__.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_page, register_page, 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_page', 'register_page', 'display_chat_interface', 'display_student_progress', 'display_text_analysis_interface',
14
+ 'get_repeated_words_colors', 'highlight_repeated_words', 'POS_COLORS', 'POS_TRANSLATIONS',
15
+ 'visualize_syntax',
16
+ 'load_spacy_models'
17
+ ]