mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-03 15:28:21 +00:00
- Updated documentation and comments to reflect the transition from LangGraph Server to Gateway. - Changed default URLs in ChannelManager and tests to point to Gateway. - Removed references to LangGraph Server in deployment scripts and configurations. - Updated Nginx configuration to route API traffic to Gateway. - Adjusted frontend configurations to utilize Gateway's API. - Removed LangGraph service from Docker Compose files, consolidating services under Gateway. - Added regression tests to ensure Gateway integration works as expected. Co-authored-by: Copilot <copilot@github.com>
17 lines
499 B
Python
17 lines
499 B
Python
"""IM Channel integration for DeerFlow.
|
|
|
|
Provides a pluggable channel system that connects external messaging platforms
|
|
(Feishu/Lark, Slack, Telegram) to the DeerFlow agent via the ChannelManager,
|
|
which uses ``langgraph-sdk`` to communicate with Gateway's LangGraph-compatible API.
|
|
"""
|
|
|
|
from app.channels.base import Channel
|
|
from app.channels.message_bus import InboundMessage, MessageBus, OutboundMessage
|
|
|
|
__all__ = [
|
|
"Channel",
|
|
"InboundMessage",
|
|
"MessageBus",
|
|
"OutboundMessage",
|
|
]
|