9 lines
186 B
Python
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']
|