Interface ChainSummarizationV1NodeParameters

Source
interface ChainSummarizationV1NodeParameters {
    options?: {
        combineMapPrompt?: string;
        prompt?: string;
        refinePrompt?: string;
        refineQuestionPrompt?: string;
    };
    type?: "map_reduce"
    | "refine"
    | "stuff";
}

Properties§

Source§

readonly options?: {
    combineMapPrompt?: string;
    prompt?: string;
    refinePrompt?: string;
    refineQuestionPrompt?: string;
}

Default: {}

Source§

readonly type?: "map_reduce" | "refine" | "stuff"

The type of summarization to run Default: "map_reduce"