UNPKG

@promptbook/remote-server

Version:

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

11 lines (10 loc) 349 B
/** * Converts a given name into URI-compatible parts. * * @param name The name to be converted into URI parts. * @returns An array of URI-compatible parts derived from the name. * @example 'Example Name' -> ['example', 'name'] * * @public exported from `@promptbook/utils` */ export declare function nameToUriParts(name: string): string[];