langchain.js
    Preparing search index...

    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

    • Omit<Toolkit, "func">
      • ChainToolInput

    Indexable

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

    Properties

    Properties

    chain: BaseChain