AsyncEventBridge bridges sync EventEmitter to asyncio consumers. FastAPI app with session management, discussion control, roles/providers. WebSocket for real-time events + inject, SSE for read-only streaming. Minimal dark-theme HTML/JS UI. `meeting-room serve` CLI subcommand. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
17 lines
477 B
Markdown
17 lines
477 B
Markdown
# v2-p2-websocket-sse
|
|
|
|
## Goal
|
|
Stream discussion events to browser clients via WebSocket and SSE endpoints.
|
|
|
|
## Key files
|
|
- `meeting_room/server.py` — WebSocket and SSE route handlers
|
|
|
|
## Decisions log
|
|
- 2026-05-04: WebSocket for bidirectional (events + inject), SSE for read-only
|
|
|
|
## Open questions
|
|
- [ ] None
|
|
|
|
## Completed steps
|
|
- [x] WebSocket endpoint: /ws/{session_id} — bidirectional events + inject
|
|
- [x] SSE endpoint: /events/{session_id} — read-only event stream |