langchain.js
    Preparing search index...
    interface ToolRun {
        action: string;
        child_chain_runs: ChainRun[];
        child_execution_order: number;
        child_llm_runs: LLMRun[];
        child_tool_runs: ToolRun[];
        end_time?: number;
        error?: string;
        execution_order: number;
        output?: string;
        parent_uuid?: string;
        serialized: { name: string };
        session_id: number;
        start_time: number;
        tool_input: string;
        type: string;
        uuid: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    action: string
    child_chain_runs: ChainRun[]
    child_execution_order: number
    child_llm_runs: LLMRun[]
    child_tool_runs: ToolRun[]
    end_time?: number
    error?: string
    execution_order: number
    output?: string
    parent_uuid?: string
    serialized: { name: string }
    session_id: number
    start_time: number
    tool_input: string
    type: string
    uuid: string