Skip to content

Commit 9029c2b

Browse files
authored
Merge pull request elizaOS#709 from antpb/make-fastembed-dynamic-import
fix: move `fastembed` import to the isnode condition check
2 parents 7288127 + 8a8586a commit 9029c2b

File tree

1 file changed

+26
-7
lines changed

1 file changed

+26
-7
lines changed

packages/core/src/embedding.ts

+26-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { models } from "./models.ts";
33
import { IAgentRuntime, ModelProviderName } from "./types.ts";
44
import settings from "./settings.ts";
55
import elizaLogger from "./logger.ts";
6-
import { EmbeddingModel } from "fastembed";
6+
77
interface EmbeddingOptions {
88
model: string;
99
endpoint: string;
@@ -27,7 +27,7 @@ export const getEmbeddingConfig = () => ({
2727
? "text-embedding-3-small"
2828
: settings.USE_OLLAMA_EMBEDDING?.toLowerCase() === "true"
2929
? settings.OLLAMA_EMBEDDING_MODEL || "mxbai-embed-large"
30-
: EmbeddingModel.BGESmallENV15,
30+
: "BGE-small-en-v1.5",
3131
provider:
3232
settings.USE_OPENAI_EMBEDDING?.toLowerCase() === "true"
3333
? "OpenAI"
@@ -215,10 +215,29 @@ export async function embed(runtime: IAgentRuntime, input: string) {
215215
process.versions != null &&
216216
process.versions.node != null;
217217

218-
if (isNode) {
219-
const fs = await import("fs");
220-
const { FlagEmbedding } = await import("fastembed");
221-
const { fileURLToPath } = await import("url");
218+
if (!isNode) {
219+
elizaLogger.warn(
220+
"Local embedding not supported in browser, falling back to remote embedding"
221+
);
222+
throw new Error("Local embedding not supported in browser");
223+
}
224+
225+
try {
226+
const moduleImports = await Promise.all([
227+
import("fs"),
228+
import("url"),
229+
(async () => {
230+
try {
231+
return await import("fastembed");
232+
} catch {
233+
elizaLogger.error("Failed to load fastembed.");
234+
throw new Error("fastembed import failed, falling back to remote embedding");
235+
}
236+
})()
237+
]);
238+
239+
const [fs, { fileURLToPath }, fastEmbed] = moduleImports;
240+
const { FlagEmbedding, EmbeddingModel } = fastEmbed;
222241

223242
function getRootPath() {
224243
const __filename = fileURLToPath(import.meta.url);
@@ -319,7 +338,7 @@ export async function embed(runtime: IAgentRuntime, input: string) {
319338
}
320339

321340
return finalEmbedding;
322-
} else {
341+
} catch {
323342
// Browser implementation - fallback to remote embedding
324343
elizaLogger.warn(
325344
"Local embedding not supported in browser, falling back to remote embedding"

0 commit comments

Comments
 (0)