langchain.js
    Preparing search index...

    Interface SimpleSequentialChainInput

    Switch to expression language: https://js.langchain.com/docs/expression_language/ Interface for the input parameters of the SimpleSequentialChain class.

    interface SimpleSequentialChainInput {
        callbackManager?: any;
        chains: BaseChain<ChainValues, ChainValues>[];
        memory?: any;
        trimOutputs?: boolean;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    callbackManager?: any

    Use callbacks instead

    chains: BaseChain<ChainValues, ChainValues>[]

    Array of chains to run as a sequence. The chains are run in order they appear in the array.

    memory?: any
    trimOutputs?: boolean

    Whether or not to trim the intermediate outputs.