@@ -3,7 +3,7 @@ import { models } from "./models.ts";
3
3
import { IAgentRuntime , ModelProviderName } from "./types.ts" ;
4
4
import settings from "./settings.ts" ;
5
5
import elizaLogger from "./logger.ts" ;
6
- import { EmbeddingModel } from "fastembed" ;
6
+
7
7
interface EmbeddingOptions {
8
8
model : string ;
9
9
endpoint : string ;
@@ -27,7 +27,7 @@ export const getEmbeddingConfig = () => ({
27
27
? "text-embedding-3-small"
28
28
: settings . USE_OLLAMA_EMBEDDING ?. toLowerCase ( ) === "true"
29
29
? settings . OLLAMA_EMBEDDING_MODEL || "mxbai-embed-large"
30
- : EmbeddingModel . BGESmallENV15 ,
30
+ : "BGE-small-en-v1.5" ,
31
31
provider :
32
32
settings . USE_OPENAI_EMBEDDING ?. toLowerCase ( ) === "true"
33
33
? "OpenAI"
@@ -215,10 +215,29 @@ export async function embed(runtime: IAgentRuntime, input: string) {
215
215
process . versions != null &&
216
216
process . versions . node != null ;
217
217
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 ;
222
241
223
242
function getRootPath ( ) {
224
243
const __filename = fileURLToPath ( import . meta. url ) ;
@@ -319,7 +338,7 @@ export async function embed(runtime: IAgentRuntime, input: string) {
319
338
}
320
339
321
340
return finalEmbedding ;
322
- } else {
341
+ } catch {
323
342
// Browser implementation - fallback to remote embedding
324
343
elizaLogger . warn (
325
344
"Local embedding not supported in browser, falling back to remote embedding"
0 commit comments