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

    Interface ReasoningTraceProps

    Reasoning trace component props

    interface ReasoningTraceProps {
        reasoning: ReasoningStep[];
        mode?: "compact" | "expanded" | "collapsed";
        showConfidence?: boolean;
        showTimestamps?: boolean;
        className?: string;
        onStepClick?: (step: ReasoningStep) => void;
    }
    Index

    Properties

    reasoning: ReasoningStep[]

    Reasoning steps

    mode?: "compact" | "expanded" | "collapsed"

    Display mode

    showConfidence?: boolean

    Show confidence scores

    showTimestamps?: boolean

    Show timestamps

    className?: string

    Additional CSS classes

    onStepClick?: (step: ReasoningStep) => void

    Step click handler