/** * Semantic helper * * Keyword is string without diacritics in lowercase [a-z1-9] * Words are splitted between multiple keywords @see Keywords * * For example `"keyword"` * * @public exported from `@promptbook/utils` */ export type string_keyword = string; /** * Semantic helper * Set of keywords @see string_keyword * * @public exported from `@promptbook/utils` */ export type Keywords = Set; /** * TODO: [🌮] Keywords with weight */