mirror of
https://github.com/aljazceru/enclava.git
synced 2025-12-17 23:44:24 +01:00
rag improvements 2
This commit is contained in:
21
backend/app/modules/chatbot/__init__.py
Normal file
21
backend/app/modules/chatbot/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""
|
||||
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"
|
||||
]
|
||||
Reference in New Issue
Block a user