From ef1c8eac52ea21cea8c13f338f0cdfc99f507c39 Mon Sep 17 00:00:00 2001 From: Harshith Mullapudi Date: Tue, 21 Oct 2025 14:18:40 +0530 Subject: [PATCH] fix: default structured for search --- apps/webapp/app/routes/api.v1.search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/webapp/app/routes/api.v1.search.tsx b/apps/webapp/app/routes/api.v1.search.tsx index 8569dae..9320708 100644 --- a/apps/webapp/app/routes/api.v1.search.tsx +++ b/apps/webapp/app/routes/api.v1.search.tsx @@ -20,7 +20,7 @@ export const SearchBodyRequest = z.object({ scoreThreshold: z.number().optional(), minResults: z.number().optional(), adaptiveFiltering: z.boolean().optional(), - structured: z.boolean().optional(), + structured: z.boolean().default(true), }); const searchService = new SearchService();