Spaces:
Running
Running
Update modules/__init__.py
Browse files- modules/__init__.py +4 -3
modules/__init__.py
CHANGED
|
@@ -171,10 +171,11 @@ def load_utils_functions():
|
|
| 171 |
}
|
| 172 |
|
| 173 |
def load_chatbot_functions():
|
| 174 |
-
from .chatbot.chatbot import
|
|
|
|
| 175 |
return {
|
| 176 |
-
'
|
| 177 |
-
'
|
| 178 |
}
|
| 179 |
|
| 180 |
# Funci贸n para cargar todas las funciones
|
|
|
|
| 171 |
}
|
| 172 |
|
| 173 |
def load_chatbot_functions():
|
| 174 |
+
from .chatbot.chatbot.sidebar_chat import display_sidebar_chat,
|
| 175 |
+
from .chatbot.chatbot.chat_process import ChatProcessor
|
| 176 |
return {
|
| 177 |
+
'display_sidebar_chat': display_sidebar_chat,
|
| 178 |
+
'ChatProcessor': ChatProcessor
|
| 179 |
}
|
| 180 |
|
| 181 |
# Funci贸n para cargar todas las funciones
|