fix(oss): make pgvector pg import compatible with ESM#4544
Merged
whysosaket merged 1 commit intomem0ai:mainfrom Mar 26, 2026
Merged
fix(oss): make pgvector pg import compatible with ESM#4544whysosaket merged 1 commit intomem0ai:mainfrom
whysosaket merged 1 commit intomem0ai:mainfrom
Conversation
db87020 to
ff6c8db
Compare
Contributor
Author
|
I force-pushed a new commit with corrected author/committer (Felippe Mercurio fmercurio@gmail.com) so the CLA bot should be able to match the signer. |
utkarsh240799
approved these changes
Mar 26, 2026
Contributor
|
Hi @fmercurio , Thank you for your taking the the time to come up with the fix. Can you please sign the CLA? |
kartik-mem0
approved these changes
Mar 26, 2026
whysosaket
approved these changes
Mar 26, 2026
This was referenced Mar 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix: pgvector
pgimport compatibility with Node ESMProblem
In the OSS bundle, the pgvector vector store imports
pglike this:But
pgis a CommonJS module. Under Node ESM, it does not provide named exports, so module evaluation fails with:This breaks downstream integrations (e.g. OpenClaw Mem0 plugin) because the OSS bundle throws during import, causing memory capture and recall to fail.
Solution
Switch to a CJS-safe ESM import style:
Testing
pnpm testinmem0-ts/✅Closes: #4543