feat: utterances API routes — list, clip, tag, dismiss

Adds app/api/main.py (create_app factory with health endpoint), utterances
router (GET /api/utterances with date/room/speaker/status filters, GET clip,
POST tag, POST dismiss), stub routers for speakers/rooms/search/rag, and
tests/routes/ with 6 passing TDD tests.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-28 10:43:22 -05:00
parent 9a672c4c17
commit 4def6a526c
8 changed files with 273 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from fastapi import APIRouter
def make_router(settings, db_factory):
router = APIRouter(prefix="/api")
return router