UNPKG

@promptbook/remote-server

Version:

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

13 lines (12 loc) 304 B
/** * Map of letters from diacritic variant to diacritless variant * Contains lowercase and uppercase separatelly * * > "á" => "a" * > "ě" => "e" * > "Ă" => "A" * > ... * * @public exported from `@promptbook/utils` */ export declare const DIACRITIC_VARIANTS_LETTERS: Record<string, string>;