mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-02-04 18:06:48 +00:00
- Import topics_to_webvtt_named and recordings controller - Add _get_is_multitrack helper function - Generate WebVTT context on WebSocket connection - Add get_context message type to retrieve WebVTT - Maintain backward compatibility with echo for other messages - Add test fixture and test for WebVTT context generation Implements task fn-1.2: WebVTT context generation for transcript chat
23 lines
548 B
Markdown
23 lines
548 B
Markdown
# Task 4: Register WebSocket Route
|
|
|
|
**File:** `server/reflector/app.py` (modify)
|
|
**Lines:** ~3
|
|
**Dependencies:** Task 3
|
|
|
|
## Objective
|
|
Register chat router in FastAPI app.
|
|
|
|
## Implementation
|
|
```python
|
|
# Add import
|
|
from reflector.views.transcripts_chat import router as transcripts_chat_router
|
|
|
|
# Add to route registration section
|
|
app.include_router(transcripts_chat_router, prefix="/v1", tags=["transcripts"])
|
|
```
|
|
|
|
## Validation
|
|
- [ ] Route appears in OpenAPI docs at `/docs`
|
|
- [ ] WebSocket endpoint accessible from frontend
|
|
- [ ] No import errors
|