AgentEvalTool/backend/agenteval/channels/__init__.py

28 lines
567 B
Python

"""Message channel adapters."""
from agenteval.channels.base import (
ChannelHealth,
ChannelTransportError,
EvalChannel,
ExchangeOutcome,
ExchangeStatus,
Reply,
SendResult,
normalize_reply_text,
)
from agenteval.channels.factory import ChannelFactory
from agenteval.channels.tutu import TutuApiChannel
__all__ = [
"ChannelFactory",
"ChannelHealth",
"ChannelTransportError",
"EvalChannel",
"ExchangeOutcome",
"ExchangeStatus",
"Reply",
"SendResult",
"TutuApiChannel",
"normalize_reply_text",
]