lloyal-agents API Reference
    Preparing search index...

    Interface PlanResult

    Output returned by PlanTool execution.

    interface PlanResult {
        questions: PlanQuestion[];
        timeMs: number;
        tokenCount: number;
    }
    Index

    Properties

    questions: PlanQuestion[]

    Classified sub-questions (may be empty if the query needs no decomposition).

    timeMs: number

    Wall-clock time for the planning pass in milliseconds.

    tokenCount: number

    Number of tokens generated during planning.