UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

18 lines (17 loc) 472 B
/** * 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 {};