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

    Interface StepRendererProps

    Properties for custom step renderer

    interface StepRendererProps {
        step: AgentStep;
        index: number;
        isCurrentStep: boolean;
        isLastStep: boolean;
        compact?: boolean;
        showDetails?: boolean;
        onClick?: (step: AgentStep) => void;
    }
    Index

    Properties

    step: AgentStep

    Step data

    index: number

    Step index

    isCurrentStep: boolean

    Whether this is the current step

    isLastStep: boolean

    Whether this is the last step

    compact?: boolean

    Compact display mode

    showDetails?: boolean

    Show step details

    onClick?: (step: AgentStep) => void

    Click handler