langchain.js
    Preparing search index...

    Interface StuffDocumentsChainInput

    Interface for the input properties of the StuffDocumentsChain class.

    interface StuffDocumentsChainInput {
        callbackManager?: any;
        documentVariableName?: string;
        inputKey?: string;
        llmChain: LLMChain;
        memory?: any;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    callbackManager?: any

    Use callbacks instead

    documentVariableName?: string

    Variable name in the LLM chain to put the documents in

    inputKey?: string
    llmChain: LLMChain

    LLM Wrapper to use after formatting documents

    memory?: any