UNPKG

firestore-search-engine

Version:

Firestore Search Engine is a powerful helper library for enhancing search functionality in Firestore. Designed to handle misspellings, prefixes, and phonetic matching, this package generates multiple search variations for optimized approximate search resu

7 lines (6 loc) 265 B
/** * Function that vectorizes a given text using a Flag Embedding model. * @param text The text to be vectorized. * @returns A vector representation of the text. */ export declare function fse_vectorizeText(text: string, maxLength: number): Promise<number[]>;