@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
19 lines (18 loc) • 427 B
TypeScript
/**
* 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>;