/** * Non-fatal embedding: returns an empty array if the shared embed client fails * (Ollama unavailable, slow or wedged past the request timeout, or a dense body * that still errors after the token-safe cap). Task operations succeed without * an embedding — memory-search just will not find the node by similarity until * the next update re-embeds. Delegates the POST to platform/lib/embed-client so * the token-safe cap, the explicit request timeout, and the cause-naming error * are inherited (Task 1530). The failure the shared client would throw is caught * here and downgraded to `[]`, but first written as a greppable breadcrumb so a * swallowed embed is diagnosable rather than silent. */ export declare function computeEmbedding(text: string): Promise; //# sourceMappingURL=embeddings.d.ts.map