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

    Interface AgentStep

    Individual agent step information

    interface AgentStep {
        id: string;
        name: string;
        status: AgentStepStatus;
        timestamp?: Date;
        duration?: number;
        result?: any;
        error?: Error;
        toolCalls?: ToolCall[];
        metadata?: Record<string, any>;
    }
    Index

    Properties

    id: string

    Step unique identifier

    name: string

    Step name or description

    Step status

    timestamp?: Date

    Step execution timestamp

    duration?: number

    Step duration in milliseconds

    result?: any

    Step result or output

    error?: Error

    Step error if failed

    toolCalls?: ToolCall[]

    Tool calls associated with this step

    metadata?: Record<string, any>

    Step metadata