/** * hazo_llm_embed — Text embeddings with caching and batch deduplication. * * Usage: * const result = await hazo_llm_embed({ text: 'Hello world' }); * const batch = await hazo_llm_embed({ text: ['text1', 'text2'] }); */ import type { EmbedParams, EmbedResponse, Logger } from './types.js'; export declare function hazo_llm_embed_internal(params: EmbedParams, logger: Logger): Promise; //# sourceMappingURL=hazo_llm_embed.d.ts.map