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

Hierarchy (view full)

Properties

action: string
child_chain_runs: ChainRun[]
child_execution_order: number
child_llm_runs: LLMRun[]
child_tool_runs: ToolRun[]
execution_order: number
serialized: {
    name: string;
}

Type declaration

  • name: string
session_id: number
start_time: number
tool_input: string
type: string
uuid: string
end_time?: number
error?: string
output?: string
parent_uuid?: string

Generated using TypeDoc