todoappapi / ws_manager /__init__.py
GrowWithTalha's picture
feat: sync backend changes from main repo
dc3879e
raw
history blame contribute delete
474 Bytes
"""WebSocket connection management for real-time progress updates.
[Task]: T067
[From]: specs/004-ai-chatbot/tasks.md
This package provides WebSocket infrastructure for streaming AI agent
progress events to the frontend in real-time.
"""
from ws_manager.manager import manager
from ws_manager.events import (
EventType,
ToolProgressEvent,
broadcast_progress,
)
__all__ = [
"manager",
"EventType",
"ToolProgressEvent",
"broadcast_progress",
]