Represents the parameters for creating a RefineQAChain.

interface RefineQAChainParams {
    questionPrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>;
    refineLLM?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>;
    refinePrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>;
    verbose?: boolean;
}

Properties

questionPrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>
refineLLM?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>
refinePrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>
verbose?: boolean

Generated using TypeDoc