Update modules/morphosyntax/morphosyntax_interface.py
Browse files
modules/morphosyntax/morphosyntax_interface.py
CHANGED
@@ -9,7 +9,12 @@ import base64
|
|
9 |
# Importar desde morphosyntax_process.py
|
10 |
from .morphosyntax_process import (
|
11 |
process_morphosyntactic_input,
|
12 |
-
format_analysis_results
|
|
|
|
|
|
|
|
|
|
|
13 |
)
|
14 |
|
15 |
from ..utils.widget_utils import generate_unique_key
|
|
|
9 |
# Importar desde morphosyntax_process.py
|
10 |
from .morphosyntax_process import (
|
11 |
process_morphosyntactic_input,
|
12 |
+
format_analysis_results,
|
13 |
+
perform_advanced_morphosyntactic_analysis, # Añadir esta importación
|
14 |
+
get_repeated_words_colors, # Y estas también
|
15 |
+
highlight_repeated_words,
|
16 |
+
POS_COLORS,
|
17 |
+
POS_TRANSLATIONS
|
18 |
)
|
19 |
|
20 |
from ..utils.widget_utils import generate_unique_key
|