Update modules/__init__.py
Browse files- modules/__init__.py +4 -2
modules/__init__.py
CHANGED
@@ -68,13 +68,15 @@ def morpho_analysis_functions():
|
|
68 |
get_repeated_words_colors,
|
69 |
highlight_repeated_words,
|
70 |
POS_COLORS,
|
71 |
-
POS_TRANSLATIONS
|
|
|
72 |
)
|
73 |
return {
|
74 |
'get_repeated_words_colors': get_repeated_words_colors,
|
75 |
'highlight_repeated_words': highlight_repeated_words,
|
76 |
'POS_COLORS': POS_COLORS,
|
77 |
-
'POS_TRANSLATIONS': POS_TRANSLATIONS
|
|
|
78 |
}
|
79 |
|
80 |
def semantic_analysis_text_functions():
|
|
|
68 |
get_repeated_words_colors,
|
69 |
highlight_repeated_words,
|
70 |
POS_COLORS,
|
71 |
+
POS_TRANSLATIONS,
|
72 |
+
perform_advance_morphosyntax_analysis
|
73 |
)
|
74 |
return {
|
75 |
'get_repeated_words_colors': get_repeated_words_colors,
|
76 |
'highlight_repeated_words': highlight_repeated_words,
|
77 |
'POS_COLORS': POS_COLORS,
|
78 |
+
'POS_TRANSLATIONS': POS_TRANSLATIONS,
|
79 |
+
'perform_advance_morphosyntax_analysis' : perform_advance_morphosyntax_analysis
|
80 |
}
|
81 |
|
82 |
def semantic_analysis_text_functions():
|