feat(types): add search_results research block

This commit is contained in:
ItzCrazyKns
2025-12-08 13:07:16 +05:30
parent e329820bc8
commit d0e71e6482

View File

@@ -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 = {