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

    Interface ReasoningTraceProps

    interface ReasoningTraceProps {
        reasoning: string | ReasoningStep[];
        details?: any[];
        className?: string;
        showStepNumbers?: boolean;
        collapsible?: boolean;
        defaultExpanded?: boolean;
        showConfidence?: boolean;
        enableSyntaxHighlighting?: boolean;
        compactView?: boolean;
        onStepClick?: (step: ReasoningStep, index: number) => void;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    reasoning: string | ReasoningStep[]
    details?: any[]
    className?: string
    showStepNumbers?: boolean
    collapsible?: boolean
    defaultExpanded?: boolean
    showConfidence?: boolean
    enableSyntaxHighlighting?: boolean
    compactView?: boolean
    onStepClick?: (step: ReasoningStep, index: number) => void