kotaemon/knowledgehub/chatbot/__init__.py
Nguyen Trung Duc (john) 6e7905cbc0 [AUR-411] Adopt to Example2 project (#28)
Add the chatbot from Example2. Create the UI for chat.
2023-10-12 15:13:25 +07:00

5 lines
177 B
Python

from .base import BaseChatBot, ChatConversation
from .simple_respondent import SimpleRespondentChatbot
__all__ = ["BaseChatBot", "SimpleRespondentChatbot", "ChatConversation"]