Interface ChainSummarizationV1NodeParameters

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

Properties§

§readonly options?: { ... }

Default: {}

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

The type of summarization to run Default: "map_reduce"