UNPKG

llamaindex

Version:

<p align="center"> <img height="100" width="100" alt="LlamaIndex logo" src="https://ts.llamaindex.ai/square.svg" /> </p> <h1 align="center">LlamaIndex.TS</h1> <h3 align="center"> Data framework for your LLM application. </h3>

5 lines (4 loc) 412 B
export declare function expandTokensWithSubtokens(tokens: Set<string>): Set<string>; export declare function extractKeywordsGivenResponse(response: string, startToken?: string, lowercase?: boolean): Set<string>; export declare function simpleExtractKeywords(textChunk: string, maxKeywords?: number): Set<string>; export declare function rakeExtractKeywords(textChunk: string, maxKeywords?: number): Set<string>;