nexus-agents - v2.80.0
    Preparing search index...

    Interface ForestResult

    Result of Forest-of-Thought reasoning.

    interface ForestResult {
        forestId: string;
        problem: string;
        bestSolution: BestSolution | null;
        topPaths: readonly PathScore[];
        conclusions: readonly ReasoningNode[];
        finalState: ForestState;
        terminationReason: TerminationReason;
        statistics: ForestStatistics;
        durationMs: number;
        totalTokensUsed: number;
        explorationHistory?: readonly ExplorationEvent[];
    }
    Index

    Properties

    forestId: string

    Forest ID

    problem: string

    Original problem

    bestSolution: BestSolution | null

    Best solution found

    topPaths: readonly PathScore[]

    All high-quality paths found

    conclusions: readonly ReasoningNode[]

    All conclusions reached across trees

    finalState: ForestState

    Final state of the forest

    terminationReason: TerminationReason

    Reason for termination

    statistics: ForestStatistics

    Final statistics

    durationMs: number

    Total duration in ms

    totalTokensUsed: number

    Total tokens used

    explorationHistory?: readonly ExplorationEvent[]

    Exploration history for analysis