From 3d7a4e64a6c9dfaaf715993d23ea7c93c1094b9d Mon Sep 17 00:00:00 2001 From: soryu Date: Wed, 14 Jan 2026 21:38:29 +0000 Subject: feat(listen): add transcript analysis API endpoints Adds three new endpoints under /api/v1/listen/: - POST /analyze - Analyze a file's transcript for requirements, decisions, action items - POST /create-contract - Create a new contract from analyzed transcript - POST /update-contract - Update an existing contract with extracted information These endpoints bridge the Listen (voice transcription) system with the Contract system, enabling voice-to-contract workflows. Co-Authored-By: Claude Opus 4.5 --- makima/src/server/handlers/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'makima/src/server/handlers/mod.rs') diff --git a/makima/src/server/handlers/mod.rs b/makima/src/server/handlers/mod.rs index 8c2cb0c..0ce6c85 100644 --- a/makima/src/server/handlers/mod.rs +++ b/makima/src/server/handlers/mod.rs @@ -15,5 +15,6 @@ pub mod mesh_merge; pub mod mesh_supervisor; pub mod mesh_ws; pub mod templates; +pub mod transcript_analysis; pub mod users; pub mod versions; -- cgit v1.2.3