Interface ResearchCompleteEvent

Emitted when deep research completes.

interface ResearchCompleteEvent {
    type: "research:complete";
    iterationsUsed: number;
    totalChunks: number;
    durationMs: number;
    timestamp: number;
}

Properties

type: "research:complete"
iterationsUsed: number

Total number of research iterations performed.

totalChunks: number

Total chunks gathered across all iterations.

durationMs: number

Duration of the research phase in milliseconds.

timestamp: number

Timestamp when research completed.