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

    Interface ReasoningNodeMetadata

    Metadata associated with a reasoning node.

    interface ReasoningNodeMetadata {
        source?: string;
        tokensUsed?: number;
        generationTimeMs?: number;
        crossReferences?: readonly string[];
        custom?: Record<string, unknown>;
    }
    Index

    Properties

    source?: string

    Source of this reasoning (model, tool, etc.)

    tokensUsed?: number

    Tokens used to generate this node

    generationTimeMs?: number

    Time taken to generate this node in ms

    crossReferences?: readonly string[]

    References to other nodes that informed this reasoning

    custom?: Record<string, unknown>

    Custom key-value pairs for extensibility