15 lines
456 B
Python
15 lines
456 B
Python
# Copyright (c) 2025 Patrick Motsch
|
|
# All rights reserved.
|
|
"""
|
|
Chatbot feature - LangGraph-based chatbot implementation.
|
|
Lazy-loaded to avoid importing langgraph/langchain at boot time.
|
|
"""
|
|
|
|
|
|
async def chatProcess(*args, **kwargs):
|
|
"""Lazy wrapper - imports the real chatProcess on first call to defer langgraph loading."""
|
|
from .service import chatProcess as _chatProcess
|
|
return await _chatProcess(*args, **kwargs)
|
|
|
|
|
|
__all__ = ['chatProcess']
|