langchain.js
    Preparing search index...

    Interface for the input parameters of the LengthBasedExampleSelector class.

    interface LengthBasedExampleSelectorInput {
        examplePrompt: PromptTemplate;
        getTextLength?: (text: string) => number;
        maxLength?: number;
    }
    Index

    Properties

    examplePrompt: PromptTemplate
    getTextLength?: (text: string) => number
    maxLength?: number