From 0cc2875e565947890dc97967182cacbc7f588e3a Mon Sep 17 00:00:00 2001 From: Adam Cohen Hillel Date: Thu, 17 Apr 2025 00:29:02 +0100 Subject: [PATCH] dont show summaries in frontend --- frontend/src/lib/api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/lib/api.ts b/frontend/src/lib/api.ts index 2759e5dc..c88a8960 100644 --- a/frontend/src/lib/api.ts +++ b/frontend/src/lib/api.ts @@ -393,6 +393,7 @@ export const getMessages = async (threadId: string): Promise => { .select('*') .eq('thread_id', threadId) .neq('type', 'cost') + .neq('type', 'summary') .order('created_at', { ascending: true }); if (error) {