@conciergus/chat - v0.3.1
    Preparing search index...

    Interface ReasoningStep

    Enhanced reasoning step interface

    interface ReasoningStep {
        step: number;
        content: string;
        type: ReasoningType;
        confidence?: number;
        signature?: string;
        redacted?: boolean;
        data?: string;
        timestamp?: string | Date;
        tokens?: number;
        duration?: number;
        sourceRefs?: string[];
        metadata?: Record<string, any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    step: number

    Step number in reasoning sequence

    content: string

    Reasoning content

    Type of reasoning step

    confidence?: number

    Confidence score for this step (0-1)

    signature?: string

    Step signature or identifier

    redacted?: boolean

    Whether content is redacted

    data?: string

    Redacted data if applicable

    timestamp?: string | Date

    Timestamp of reasoning step

    tokens?: number

    Token count for this step

    duration?: number

    Duration of this step in milliseconds

    sourceRefs?: string[]

    References to sources used in reasoning

    metadata?: Record<string, any>

    Additional metadata