@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
12 lines (11 loc) • 394 B
TypeScript
/**
* Removes diacritic marks (accents) from characters in a string.
*
* @param input The string containing diacritics to be normalized.
* @returns The string with diacritics removed or normalized.
* @public exported from `@promptbook/utils`
*/
export declare function removeDiacritics(input: string): string;
/**
* TODO: [Ж] Variant for cyrillic (and in general non-latin) letters
*/