mirror of
https://github.com/aljazceru/enclava.git
synced 2025-12-17 07:24:34 +01:00
21 lines
541 B
Python
21 lines
541 B
Python
"""
|
|
Chatbot Module - AI Chatbot with RAG Integration
|
|
|
|
This module provides AI chatbot capabilities with:
|
|
- Multiple personality types (Assistant, Customer Support, Teacher, etc.)
|
|
- RAG integration for knowledge-based responses
|
|
- Conversation memory and context management
|
|
- Workflow integration as building blocks
|
|
- UI-configurable settings
|
|
"""
|
|
|
|
from .main import ChatbotModule, create_module
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "Enclava Team"
|
|
|
|
# Export main classes for easy importing
|
|
__all__ = [
|
|
"ChatbotModule",
|
|
"create_module"
|
|
] |