AIdeaText commited on
Commit
8ecaf5d
·
verified ·
1 Parent(s): ab3800b

Update modules/morphosyntax/morphosyntax_process.py

Browse files
modules/morphosyntax/morphosyntax_process.py CHANGED
@@ -2,11 +2,17 @@
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
 
12
  def process_morphosyntactic_input(user_input, lang_code, nlp_models, t):
 
2
  import streamlit as st
3
 
4
  from ..text_analysis.morpho_analysis import (
5
+ get_repeated_words_colors,
6
+ highlight_repeated_words,
7
+ generate_arc_diagram,
8
+ get_detailed_pos_analysis,
9
+ get_morphological_analysis,
10
+ get_sentence_structure_analysis,
11
+ perform_advanced_morphosyntactic_analysis
12
  )
13
 
14
  from ..database.morphosintax_mongo_db import store_student_morphosyntax_result
15
+
16
  from ..chatbot.chatbot import process_chat_input
17
 
18
  def process_morphosyntactic_input(user_input, lang_code, nlp_models, t):