Interface LoopProgress

Progress update during autonomous loop.

interface LoopProgress {
    iteration: number;
    currentStep: PlanStep;
    progress: number;
    observations: string[];
    goalConfidence: number;
    tokensUsed: number;
}

Properties

iteration: number

Current iteration

currentStep: PlanStep

Current step being executed

progress: number

Overall progress (0-1)

observations: string[]

Accumulated observations

goalConfidence: number

Current confidence in goal achievement

tokensUsed: number

Tokens used so far