Interface for the input properties of the StuffDocumentsChain class.

interface StuffDocumentsChainInput {
    llmChain: LLMChain<string, LLMType>;
    callbackManager?: CallbackManager;
    documentVariableName?: string;
    inputKey?: string;
    memory?: BaseMemory;
}

Hierarchy (view full)

Implemented by

Properties

llmChain: LLMChain<string, LLMType>

LLM Wrapper to use after formatting documents

callbackManager?: CallbackManager

⚠️ Deprecated ⚠️

Use callbacks instead

This feature is deprecated and will be removed in the future.

It is not recommended for use.

documentVariableName?: string

Variable name in the LLM chain to put the documents in

inputKey?: string
memory?: BaseMemory

Generated using TypeDoc