UNPKG

@promptbook/azure-openai

Version:

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

10 lines (9 loc) 346 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[];