Update modules/morphosyntax/morphosyntax_process.py
Browse files
modules/morphosyntax/morphosyntax_process.py
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
#modules/morphosyntax/morphosyntax_process.py
|
2 |
import streamlit as st
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
4 |
from ..database.morphosintax_mongo_db import store_student_morphosyntax_result
|
5 |
from ..chatbot.chatbot import process_chat_input
|
6 |
|
|
|
1 |
#modules/morphosyntax/morphosyntax_process.py
|
2 |
import streamlit as st
|
3 |
+
|
4 |
+
from ..text_analysis.morpho_analysis import (
|
5 |
+
perform_advanced_morphosyntactic_analysis,
|
6 |
+
get_repeated_words_colors
|
7 |
+
)
|
8 |
+
|
9 |
from ..database.morphosintax_mongo_db import store_student_morphosyntax_result
|
10 |
from ..chatbot.chatbot import process_chat_input
|
11 |
|