From 5cfc70632e52abca83a09ca73e531bfe1c80c540 Mon Sep 17 00:00:00 2001 From: Avraham Sakal Date: Mon, 21 Jul 2025 20:42:09 -0400 Subject: [PATCH] display the `runningSummary` as markdown as well --- pages/chat/@id/+Page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/chat/@id/+Page.tsx b/pages/chat/@id/+Page.tsx index b39d232..9cdb29a 100644 --- a/pages/chat/@id/+Page.tsx +++ b/pages/chat/@id/+Page.tsx @@ -191,7 +191,8 @@ function Messages({ {message.content} {"runningSummary" in message && (
- Running Summary: {message.runningSummary} + Running Summary: + {message.runningSummary}
)}