@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
14 lines (13 loc) • 477 B
TypeScript
import type { really_unknown } from '../organization/really_unknown';
import type { Keywords } from './IKeywords';
/**
* Parses keywords from any object and recursively walks through
*
* Tip: If you want to parse multiple inputs, just wrap them in an array
*
* @param input of any kind
* @returns {Set} of keywords without diacritics in lowercase
*
* @public exported from `@promptbook/utils`
*/
export declare function parseKeywords(input: really_unknown): Keywords;