/** * Generates vector embeddings for a given array of strings. * * @param {string[]} queries - An array of text strings to be embedded. * @returns {Promise} A promise that resolves to an array of embedding vectors. * @throws {Error} Throws an error if the embedding model fails to initialize or process the request. */ export declare const getEmbeddings: (queries: string[]) => Promise;