@@ -21,7 +21,7 @@ import { existsSync } from "node:fs";
2121import {
2222 SYNAPSE_DEFAULT_MODEL ,
2323 SynapseEmbeddingProvider ,
24- } from "../src/features/magic-context/memory/embedding-synapse.ts " ;
24+ } from "../src/features/magic-context/memory/embedding-synapse" ;
2525
2626const args = process . argv . slice ( 2 ) ;
2727const compare = args . includes ( "--compare" ) ;
@@ -93,7 +93,7 @@ console.log(
9393if ( compare ) {
9494 // 4. Rank comparison against the primary lane vectors already in context.db.
9595 step ( "rank-compare against primary lane (read-only context.db)..." ) ;
96- const { openDatabase } = await import ( "../src/features/magic-context/storage.ts " ) ;
96+ const { openDatabase } = await import ( "../src/features/magic-context/storage" ) ;
9797 const db = openDatabase ( ) ;
9898 if ( ! db ) throw new Error ( "context.db unavailable" ) ;
9999 const rows = db
@@ -151,7 +151,7 @@ if (compare) {
151151 // Build the primary-lane provider directly from the user config so query
152152 // embeds hit the same lane the stored vectors came from.
153153 const { OpenAICompatibleEmbeddingProvider } = await import (
154- "../src/features/magic-context/memory/embedding-openai.ts "
154+ "../src/features/magic-context/memory/embedding-openai"
155155 ) ;
156156 const { readFileSync } = await import ( "node:fs" ) ;
157157 const apiKey = readFileSync ( join ( homedir ( ) , ".config" , "openrouter.key" ) , "utf8" ) . trim ( ) ;
0 commit comments