@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 354 B
TypeScript
/**
* Converts a name string into a URI-compatible format.
*
* @param name The string to be converted to a URI-compatible format.
* @returns A URI-compatible string derived from the input name.
* @example 'Hello World' -> 'hello-world'
*
* @public exported from `@promptbook/utils`
*/
export declare function nameToUriPart(name: string): string;