Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -31,8 +31,15 @@ from modules.semantic.semantic_interface import (
|
|
| 31 |
display_semantic_results
|
| 32 |
)
|
| 33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
# Importaciones de base de datos
|
|
|
|
| 35 |
from modules.database.database_init import initialize_database_connections
|
|
|
|
| 36 |
from modules.database.sql_db import (
|
| 37 |
create_student_user,
|
| 38 |
get_student_user,
|
|
@@ -61,6 +68,7 @@ from modules.database.semantic_mongo_db import (
|
|
| 61 |
)
|
| 62 |
|
| 63 |
from modules.studentact.student_activities_v2 import display_student_progress
|
|
|
|
| 64 |
from modules.auth.auth import (
|
| 65 |
authenticate_student,
|
| 66 |
register_student,
|
|
|
|
| 31 |
display_semantic_results
|
| 32 |
)
|
| 33 |
|
| 34 |
+
from modules.discourse.discourse_interface import (
|
| 35 |
+
display_discourse_interface,
|
| 36 |
+
display_discourse_results
|
| 37 |
+
)
|
| 38 |
+
|
| 39 |
# Importaciones de base de datos
|
| 40 |
+
|
| 41 |
from modules.database.database_init import initialize_database_connections
|
| 42 |
+
|
| 43 |
from modules.database.sql_db import (
|
| 44 |
create_student_user,
|
| 45 |
get_student_user,
|
|
|
|
| 68 |
)
|
| 69 |
|
| 70 |
from modules.studentact.student_activities_v2 import display_student_progress
|
| 71 |
+
|
| 72 |
from modules.auth.auth import (
|
| 73 |
authenticate_student,
|
| 74 |
register_student,
|