langchain.js
    Preparing search index...

    Interface ChainToolInput

    Wrap in a DynamicTool instead. Interface for the input parameters of the ChainTool constructor. Extends the DynamicToolInput interface, replacing the 'func' property with a 'chain' property.

    interface ChainToolInput {
        chain: BaseChain;
        [key: string]: DynamicToolInput;
        [key: number]: DynamicToolInput;
        [key: symbol]: DynamicToolInput;
    }

    Hierarchy

    Indexable

    • [key: string]: DynamicToolInput
    • [key: number]: DynamicToolInput
    • [key: symbol]: DynamicToolInput
    Index

    Properties

    Properties

    chain: BaseChain