@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 298 B
TypeScript
import type { Keywords } from './IKeywords';
/**
* Parses keywords from a string
*
* @param {string} input
* @returns {Set} of keywords without diacritics in lowercase
*
* @public exported from `@promptbook/utils`
*/
export declare function parseKeywordsFromString(input: string): Keywords;