langchain.js
    Preparing search index...

    Type Alias SerializedSequentialChain

    Represents the serialized form of a SequentialChain. It includes properties such as _type, input_variables, output_variables, and chains.

    Use newer serialization methods.

    type SerializedSequentialChain = {
        _type: "sequential_chain";
        chains: SerializedBaseChain[];
        input_variables: string[];
        output_variables: string[];
    }
    Index

    Properties

    _type: "sequential_chain"
    input_variables: string[]
    output_variables: string[]