feat(conversation-memory): upgrade to EmbeddingGemma for better multilingual support - #363
Merged
Merged
Conversation
…lingual support Switch from Xenova/all-MiniLM-L6-v2 to onnx-community/embeddinggemma-300m-ONNX: - 51% better Korean performance (83.86 vs 55.4 MRR@10) - 768-dimensional embeddings (vs 384) - 100+ language support - Q4 quantization for efficiency (~197MB model) Breaking change: Database must be recreated due to dimension mismatch. Migration guide added to README. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
|
Caution Review failedThe pull request is closed. 📝 WalkthroughWalkthroughThe conversation-memory plugin is upgraded to use the HuggingFace transformers library with the EmbeddingGemma model (768-dimensional embeddings with Q4 quantization) replacing Xenova's 384-dimensional variant. Documentation is substantially expanded with migration guidance and architecture details. Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~22 minutes Suggested labels
Poem
✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
ghost
pushed a commit
that referenced
this pull request
Feb 3, 2026
# [4.0.0](v3.4.0...v4.0.0) (2026-02-03) ### Features * **conversation-memory:** upgrade to EmbeddingGemma for better multilingual support ([#363](#363)) ([f8167a0](f8167a0)) ### BREAKING CHANGES * **conversation-memory:** Database must be recreated due to dimension mismatch. Migration guide added to README. Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
This was referenced Feb 5, 2026
Merged
Merged
baleen37
pushed a commit
to baleen37/memmem
that referenced
this pull request
Feb 15, 2026
# [4.0.0](baleen37/bstack@v3.4.0...v4.0.0) (2026-02-03) ### Features * **conversation-memory:** upgrade to EmbeddingGemma for better multilingual support ([#363](baleen37/bstack#363)) ([f8167a0](baleen37/bstack@f8167a0)) ### BREAKING CHANGES * **conversation-memory:** Database must be recreated due to dimension mismatch. Migration guide added to README. Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
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.
Summary
Upgrades conversation-memory plugin from all-MiniLM-L6-v2 to EmbeddingGemma-300M for significantly better multilingual (especially Korean) support.
Key Changes
onnx-community/embeddinggemma-300m-ONNXwith Q4 quantization@xenova/transformersto@huggingface/transformersv3Breaking Changes
Migration guide added to README with step-by-step instructions.
Technical Details
./.cachefor model storageTest Plan
🤖 Generated with Claude Code
Summary by CodeRabbit
New Features
Documentation