Interface for the input parameters required by the AnalyzeDocumentChain class.

interface AnalyzeDocumentChainInput {
    combineDocumentsChain: BaseChain<ChainValues, ChainValues>;
    callbackManager?: any;
    inputKey?: string;
    textSplitter?: TextSplitter;
}

Hierarchy

Implemented by

Properties

combineDocumentsChain: BaseChain<ChainValues, ChainValues>
callbackManager?: any

⚠️ Deprecated ⚠️

Use callbacks instead

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

It is not recommended for use.

inputKey?: string
textSplitter?: TextSplitter

Generated using TypeDoc