Fix TypeScript error: Add filter_id to RequestBody interface

Co-authored-by: phact <1313220+phact@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-12-02 23:21:49 +00:00
parent 593138257e
commit 817f6c5135

View file

@ -49,6 +49,7 @@ export interface RequestBody {
stream?: boolean;
previous_response_id?: string;
filters?: SelectedFilters;
filter_id?: string;
limit?: number;
scoreThreshold?: number;
}