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