gateway/modules/features/chatbotV2/bridges/__init__.py

8 lines
338 B
Python

# Copyright (c) 2025 Patrick Motsch
# All rights reserved.
"""Chatbot V2 bridges - AI and memory."""
from modules.features.chatbot.bridges.ai import AICenterChatModel, clear_workflow_allowed_providers
from .memory import ChatbotV2Checkpointer
__all__ = ["AICenterChatModel", "clear_workflow_allowed_providers", "ChatbotV2Checkpointer"]