UNPKG

@promptbook/browser

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

14 lines (13 loc) 336 B
import type { Keywords } from './IKeywords'; /** * Searches set of keywords for a specific keyword * * @param haystack * @param needle * @returns * @public exported from `@promptbook/utils` */ export declare function searchKeywords(haystack: Keywords, needle: Keywords): boolean; /** * TODO: Rename to `isKeywordInKeywords` */