Update modules/__init__.py
Browse files- modules/__init__.py +4 -4
modules/__init__.py
CHANGED
@@ -120,7 +120,7 @@ def load_morphosyntax_functions():
|
|
120 |
}
|
121 |
|
122 |
def load_semantic_functions():
|
123 |
-
from
|
124 |
display_semantic_interface,
|
125 |
display_semantic_results
|
126 |
)
|
@@ -138,7 +138,7 @@ def load_semantic_functions():
|
|
138 |
|
139 |
|
140 |
def load_discourse_functions():
|
141 |
-
from
|
142 |
display_discourse_interface,
|
143 |
display_discourse_results
|
144 |
)
|
@@ -177,12 +177,12 @@ def load_chatbot_functions():
|
|
177 |
)
|
178 |
|
179 |
from .chatbot.chatbot.chat_process import (
|
180 |
-
|
181 |
)
|
182 |
|
183 |
return {
|
184 |
'display_sidebar_chat': display_sidebar_chat,
|
185 |
-
'
|
186 |
}
|
187 |
|
188 |
# Funci贸n para cargar todas las funciones
|
|
|
120 |
}
|
121 |
|
122 |
def load_semantic_functions():
|
123 |
+
from .semantic.semantic_interface import (
|
124 |
display_semantic_interface,
|
125 |
display_semantic_results
|
126 |
)
|
|
|
138 |
|
139 |
|
140 |
def load_discourse_functions():
|
141 |
+
from .discourse.discourse_interface import (
|
142 |
display_discourse_interface,
|
143 |
display_discourse_results
|
144 |
)
|
|
|
177 |
)
|
178 |
|
179 |
from .chatbot.chatbot.chat_process import (
|
180 |
+
process_chat_input
|
181 |
)
|
182 |
|
183 |
return {
|
184 |
'display_sidebar_chat': display_sidebar_chat,
|
185 |
+
'process_chat_input': process_chat_input
|
186 |
}
|
187 |
|
188 |
# Funci贸n para cargar todas las funciones
|