CustomFormatPromptTemplateInput<RunInput>: {
    customParser: ((template: string) => ParsedFStringNode[]);
    renderer: ((template: string, values: InputValues) => string);
    templateValidator?: undefined | ((template: string, inputVariables: string[]) => boolean);
}

Type Parameters