Update modules/__init__.py
Browse files- modules/__init__.py +9 -2
modules/__init__.py
CHANGED
@@ -171,8 +171,15 @@ def load_utils_functions():
|
|
171 |
}
|
172 |
|
173 |
def load_chatbot_functions():
|
174 |
-
|
175 |
-
from .chatbot.chatbot.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
return {
|
177 |
'display_sidebar_chat': display_sidebar_chat,
|
178 |
'ChatProcessor': ChatProcessor
|
|
|
171 |
}
|
172 |
|
173 |
def load_chatbot_functions():
|
174 |
+
|
175 |
+
from .chatbot.chatbot.sidebar_chat import (
|
176 |
+
display_sidebar_chat
|
177 |
+
)
|
178 |
+
|
179 |
+
from .chatbot.chatbot.chat_process import (
|
180 |
+
ChatProcessor
|
181 |
+
)
|
182 |
+
|
183 |
return {
|
184 |
'display_sidebar_chat': display_sidebar_chat,
|
185 |
'ChatProcessor': ChatProcessor
|