Interface for the input parameters required by the AnalyzeDocumentChain class.

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

Hierarchy

Implemented by

Properties

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

Use callbacks instead

inputKey?: string
textSplitter?: any