Interface ResearchPhaseEvent

Emitted after each iteration of the research loop.

interface ResearchPhaseEvent {
    type: "research:phase";
    iteration: number;
    totalIterations: number;
    newChunksFound: number;
    timestamp: number;
}

Properties

type: "research:phase"
iteration: number

Current iteration number (1-based).

totalIterations: number

Total configured iterations.

newChunksFound: number

Number of new chunks discovered in this iteration.

timestamp: number

Timestamp of the event.