Type alias PipelinePromptTemplateInput<PromptTemplateType>

PipelinePromptTemplateInput<PromptTemplateType>: Omit<BasePromptTemplateInput, "inputVariables"> & {
    finalPrompt: PromptTemplateType;
    pipelinePrompts: PipelinePromptParams<PromptTemplateType>[];
}

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

Type Parameters

Type declaration

Generated using TypeDoc