Update app.py
Browse files
app.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
import streamlit as st
|
| 3 |
from modules.database import initialize_mongodb_connection
|
| 4 |
from modules.auth import authenticate_user, get_user_role, register_user
|
| 5 |
-
from modules.ui import login_register_page, display_student_progress, display_text_analysis_interface
|
| 6 |
from modules.spacy_utils import load_spacy_models
|
| 7 |
import time
|
| 8 |
|
|
@@ -63,8 +63,7 @@ def logged_in_interface():
|
|
| 63 |
display_text_analysis_interface(nlp_models, lang_code)
|
| 64 |
|
| 65 |
with tab2:
|
| 66 |
-
|
| 67 |
-
st.write("Esta función aún no está implementada.")
|
| 68 |
|
| 69 |
with tab3:
|
| 70 |
st.header("Análisis semántico discursivo")
|
|
|
|
| 2 |
import streamlit as st
|
| 3 |
from modules.database import initialize_mongodb_connection
|
| 4 |
from modules.auth import authenticate_user, get_user_role, register_user
|
| 5 |
+
from modules.ui import login_register_page, display_student_progress, display_text_analysis_interface, display_semantic_analysis_interface
|
| 6 |
from modules.spacy_utils import load_spacy_models
|
| 7 |
import time
|
| 8 |
|
|
|
|
| 63 |
display_text_analysis_interface(nlp_models, lang_code)
|
| 64 |
|
| 65 |
with tab2:
|
| 66 |
+
display_semantic_analysis_interface(nlp_models, lang_code)
|
|
|
|
| 67 |
|
| 68 |
with tab3:
|
| 69 |
st.header("Análisis semántico discursivo")
|