UNPKG

@promptbook/remote-client

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

22 lines (21 loc) 472 B
/** * 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<string_keyword>; /** * TODO: [🌮] Keywords with weight */