@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
17 lines (16 loc) • 402 B
TypeScript
/**
* Types of words used in linguistic hash output.
*
* @private utility of `linguisticHash`
*/
export type LinguisticHashWordKind = 'adjective' | 'noun' | 'verb';
/**
* Word lists used to build linguistic hashes.
*
* @private utility of `linguisticHash`
*/
export type LinguisticHashWordLists = {
adjective: readonly string[];
noun: readonly string[];
verb: readonly string[];
};