-
I have this error on extension startup (latest 1.1.77 there, macOS 15 on M4) :
And indeed, every attempt to index a @docs item fails after encoding all embedding of the content with :
It is likely a problem with the bundled lancedb from the extension for macos, I guess? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I can indeed confirm that the extension is bundling the wrong arch lanceDB package, namely Workaround : npm install @lancedb/vectordb-darwin-arm64 I can confirm the problem is gone after that. |
Beta Was this translation helpful? Give feedback.
I can indeed confirm that the extension is bundling the wrong arch lanceDB package, namely
@lancedb/vectordb-darwin-x64
, which is incorrect for an ARM mac.Workaround :
cd to the
/Users/<User>/.vscode/extensions/continue.continue-1.1.77-darwin-arm64/out
and just :I can confirm the problem is gone after that.