langchain.js
    Preparing search index...

    Type Alias PipelinePromptTemplateInput<PromptTemplateType>

    PipelinePromptTemplateInput: 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