langchain.js
    Preparing search index...

    Interface MultiRouteChainInput

    An interface that extends the ChainInputs interface and adds additional properties for the routerChain, destinationChains, defaultChain, and silentErrors. It represents the input expected by the MultiRouteChain class.

    interface MultiRouteChainInput {
        callbackManager?: any;
        defaultChain: BaseChain;
        destinationChains: { [name: string]: BaseChain<ChainValues, ChainValues> };
        memory?: any;
        routerChain: RouterChain;
        silentErrors?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    callbackManager?: any

    Use callbacks instead

    defaultChain: BaseChain
    destinationChains: { [name: string]: BaseChain<ChainValues, ChainValues> }
    memory?: any
    routerChain: RouterChain
    silentErrors?: boolean