gateway/modules/features/chatbot/__init__.py

9 lines
186 B
Python

# Copyright (c) 2025 Patrick Motsch
# All rights reserved.
"""
Chatbot feature - LangGraph-based chatbot implementation.
"""
from .service import chatProcess
__all__ = ['chatProcess']