@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
22 lines (21 loc) • 472 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>;
/**
* TODO: [🌮] Keywords with weight
*/