mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-18 12:04:45 +08:00
17 lines
496 B
Python
17 lines
496 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 the underlying LangGraph Server.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from src.channels.base import Channel
|
||
|
|
from src.channels.message_bus import InboundMessage, MessageBus, OutboundMessage
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"Channel",
|
||
|
|
"InboundMessage",
|
||
|
|
"MessageBus",
|
||
|
|
"OutboundMessage",
|
||
|
|
]
|