@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
17 lines (16 loc) • 469 B
TypeScript
/**
* Builds placeholder names while avoiding collisions with parameter content.
*
* @param values Parameter values to scan for conflicting tokens.
* @private function of ParameterNaming
*/
declare function buildParameterNames(values: string[]): string[];
/**
* Provides naming utilities for prompt parameters.
*
* @private helper of prompt notation
*/
export declare const ParameterNaming: {
buildParameterNames: typeof buildParameterNames;
};
export {};