langchain.js
    Preparing search index...
    interface AgentRun {
        actions: AgentAction[];
        child_execution_order: number;
        child_runs: AgentRun[];
        dotted_order?: string;
        end_time?: number;
        events: { kwargs?: Record<string, unknown>; name: string; time: string }[];
        execution_order: number;
        id: string;
        start_time: number;
        trace_id?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    actions: AgentAction[]
    child_execution_order: number
    child_runs: AgentRun[]
    dotted_order?: string

    The dotted order for the run.

    This is a string composed of {time}{run-uuid}.* so that a trace can be sorted in the order it was executed.

    Example:

    • Parent: 20230914T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8
    • Children:
      • 20230914T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8.20230914T223155649Z809ed3a2-0172-4f4d-8a02-a64e9b7a0f8a
      • 20230915T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8.20230914T223155650Zc8d9f4c5-6c5a-4b2d-9b1c-3d9d7a7c5c7c
    end_time?: number

    The epoch time at which the run ended, if applicable.

    events: { kwargs?: Record<string, unknown>; name: string; time: string }[]

    Events like 'start', 'end' linked to the run.

    execution_order: number
    id: string

    Optionally, a unique identifier for the run.

    start_time: number

    The epoch time at which the run started, if available.

    trace_id?: string

    Unique ID assigned to every run within this nested trace. *