ForcePilot/backend/package/yuxi/channels/utils/__init__.py
Kris 4a5051e7d1 feat(channels/utils): 添加流式消息处理工具模块
新增了SmartCoalesceBuffer、StreamStateMachine等流式消息处理相关工具类,
提供配置解析、缓冲合并、状态管理和分块发送能力,完善流式消息处理链路。
2026-05-13 16:40:02 +08:00

16 lines
310 B
Python

from __future__ import annotations
from yuxi.channels.utils.streaming_fallback import (
SmartCoalesceBuffer,
StreamingConfig,
StreamStateMachine,
UniversalChunkedSender,
)
__all__ = [
"SmartCoalesceBuffer",
"StreamingConfig",
"StreamStateMachine",
"UniversalChunkedSender",
]