Interface PlanResult

Result of the full planning pipeline.

interface PlanResult {
    selectedBranch: CandidateBranch;
    allBranches: CandidateBranch[];
    refinements: string[];
    compiledGraph: CompiledExecutionGraph;
}

Properties

selectedBranch: CandidateBranch
allBranches: CandidateBranch[]
refinements: string[]
compiledGraph: CompiledExecutionGraph