Type Alias PipelinePromptTemplateInput<PromptTemplateType>

PipelinePromptTemplateInput<PromptTemplateType>: {
    finalPrompt: PromptTemplateType;
    partialVariables: undefined | PartialValues<any>;
    pipelinePrompts: PipelinePromptParams<PromptTemplateType>[];
    outputParser?: undefined | BaseOutputParser<unknown>;
}

Type that extends the BasePromptTemplateInput type, excluding the inputVariables property. It includes an array of pipelinePrompts and a finalPrompt.

Type Parameters

Type declaration