Update modules/morphosyntax/morphosyntax_interface.py
Browse files
modules/morphosyntax/morphosyntax_interface.py
CHANGED
@@ -4,7 +4,11 @@ from streamlit_float import *
|
|
4 |
from streamlit_antd_components import *
|
5 |
from streamlit.components.v1 import html
|
6 |
import base64
|
7 |
-
from .morphosyntax_process import
|
|
|
|
|
|
|
|
|
8 |
from ..chatbot.chatbot import initialize_chatbot
|
9 |
from ..utils.widget_utils import generate_unique_key
|
10 |
from ..database.morphosintax_mongo_db import store_student_morphosyntax_result
|
|
|
4 |
from streamlit_antd_components import *
|
5 |
from streamlit.components.v1 import html
|
6 |
import base64
|
7 |
+
from .morphosyntax_process import (
|
8 |
+
process_morphosyntactic_input,
|
9 |
+
perform_advanced_morphosyntactic_analysis,
|
10 |
+
get_repeated_words_colors
|
11 |
+
)
|
12 |
from ..chatbot.chatbot import initialize_chatbot
|
13 |
from ..utils.widget_utils import generate_unique_key
|
14 |
from ..database.morphosintax_mongo_db import store_student_morphosyntax_result
|