langchain.js
    Preparing search index...

    Interface RunTreeConfig

    interface RunTreeConfig {
        attachments?: Attachments;
        child_execution_order?: number;
        child_runs?: RunTree[];
        client?: Client;
        dotted_order?: string;
        end_time?: string | number;
        error?: string;
        execution_order?: number;
        extra?: KVMap;
        id?: string;
        inputs?: KVMap;
        metadata?: KVMap;
        name: string;
        on_end?: (runTree: RunTree) => void;
        outputs?: KVMap;
        parent_run?: RunTree;
        parent_run_id?: string;
        project_name?: string;
        reference_example_id?: string;
        replicas?: Replica[];
        run_type?: string;
        serialized?: object;
        start_time?: string | number;
        tags?: string[];
        trace_id?: string;
        tracingEnabled?: boolean;
    }
    Index

    Properties

    attachments?: Attachments
    child_execution_order?: number
    child_runs?: RunTree[]
    client?: Client
    dotted_order?: string
    end_time?: string | number
    error?: string
    execution_order?: number
    extra?: KVMap
    id?: string
    inputs?: KVMap
    metadata?: KVMap
    name: string
    on_end?: (runTree: RunTree) => void
    outputs?: KVMap
    parent_run?: RunTree
    parent_run_id?: string
    project_name?: string
    reference_example_id?: string
    replicas?: Replica[]
    run_type?: string
    serialized?: object
    start_time?: string | number
    tags?: string[]
    trace_id?: string
    tracingEnabled?: boolean