Represents the parameters for creating a MapReduceQAChain.

interface MapReduceQAChainParams {
    combineLLM?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>;
    combineMapPrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>;
    combinePrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>;
    returnIntermediateSteps?: boolean;
    verbose?: boolean;
}

Properties

combineLLM?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>
combineMapPrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>
combinePrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>
returnIntermediateSteps?: boolean
verbose?: boolean

Generated using TypeDoc