From 817f6c5135ae2622daba99ce7aade7dd59196faa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 2 Dec 2025 23:21:49 +0000 Subject: [PATCH] Fix TypeScript error: Add filter_id to RequestBody interface Co-authored-by: phact <1313220+phact@users.noreply.github.com> --- frontend/app/chat/_types/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app/chat/_types/types.ts b/frontend/app/chat/_types/types.ts index 5f9c54d6..c0d732ea 100644 --- a/frontend/app/chat/_types/types.ts +++ b/frontend/app/chat/_types/types.ts @@ -49,6 +49,7 @@ export interface RequestBody { stream?: boolean; previous_response_id?: string; filters?: SelectedFilters; + filter_id?: string; limit?: number; scoreThreshold?: number; }