UNPKG

@promptbook/azure-openai

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

11 lines (10 loc) 468 B
import type { string_parameter_name } from '../../types/typeAliases'; import type { string_template } from '../../types/typeAliases'; /** * Parses the task and returns the list of all parameter names * * @param template the string template with parameters in {curly} braces * @returns the list of parameter names * @public exported from `@promptbook/utils` */ export declare function extractParameterNames(template: string_template): Set<string_parameter_name>;