From 1b3e52d9cf691ad57673120d3e6d2afe747adb5f Mon Sep 17 00:00:00 2001 From: Chip Wasson Date: Fri, 25 Apr 2025 10:57:01 -0600 Subject: [PATCH] Return 200 on claude summary --- src/claude/claude.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/claude/claude.controller.ts b/src/claude/claude.controller.ts index 59acae1..d23b356 100644 --- a/src/claude/claude.controller.ts +++ b/src/claude/claude.controller.ts @@ -58,6 +58,7 @@ Return a two paragraph or less summary, bullet points of the topics, and bullet return res .header('Content-Type', 'text/plain; charset=utf-8') + .status(200) .send((response.content[0] as any).text); } }