Interface for the input properties of the StuffDocumentsChain class.

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

Hierarchy (view full)

Implemented by

Properties

llmChain: LLMChain<string, any>

LLM Wrapper to use after formatting documents

callbackManager?: any

⚠️ 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?: any

Generated using TypeDoc