Update index.ts

This commit is contained in:
Nicolas 2025-03-02 02:39:52 -03:00
parent ab8dcab6e2
commit 99e61c967c

View File

@ -389,14 +389,19 @@ export interface DeepResearchResponse {
export interface DeepResearchStatusResponse { export interface DeepResearchStatusResponse {
success: boolean; success: boolean;
data: { data: {
findings: Array<{
text: string;
source: string;
}>;
finalAnalysis: string; finalAnalysis: string;
analysis: string; activities: Array<{
completedSteps: number; type: string;
totalSteps: number; status: string;
message: string;
timestamp: string;
depth: number;
}>;
sources: Array<{
url: string;
title: string;
description: string;
}>;
}; };
status: "processing" | "completed" | "failed"; status: "processing" | "completed" | "failed";
error?: string; error?: string;