From d0e71e6482fc2dd5c2a9bf964c51827ce06de157 Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Mon, 8 Dec 2025 13:07:16 +0530 Subject: [PATCH] feat(types): add search_results research block --- src/lib/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/lib/types.ts b/src/lib/types.ts index dfc3b72..6606447 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -75,6 +75,12 @@ export type SearchingResearchBlock = { searching: string[]; }; +export type SearchResultsResearchBlock = { + id: string; + type: 'search_results'; + reading: Chunk[]; +}; + export type ReadingResearchBlock = { id: string; type: 'reading'; @@ -84,6 +90,7 @@ export type ReadingResearchBlock = { export type ResearchBlockSubStep = | ReasoningResearchBlock | SearchingResearchBlock + | SearchResultsResearchBlock | ReadingResearchBlock; export type ResearchBlock = {