langchain.js
    Preparing search index...

    Type Alias PipelinePromptParams<PromptTemplateType>

    Type that includes the name of the prompt and the prompt itself.

    type PipelinePromptParams<PromptTemplateType extends BasePromptTemplate> = {
        name: string;
        prompt: PromptTemplateType;
    }

    Type Parameters

    Index

    Properties

    Properties

    name: string