CustomFormatPromptTemplateInput<RunInput>: Omit<Toolkit<RunInput, string>, "templateFormat"> & {
    customParser: ((template: string) => Toolkit[]);
    renderer: ((template: string, values: Toolkit) => string);
    templateValidator?: ((template: string, inputVariables: string[]) => boolean);
}

Type Parameters