You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reviewed 3 past PRs · 0 relevant decisions found · confidence threshold 0.5
⚠️ Potential conflicts
Inconsistent migration path from GitHub Action to pip-based indexer · confidence: 0.80
PR #10 recently updated version references to use the GitHub Action approach (automationpi/mergelore/indexer@v0.2.1). This current PR replaces that entire pattern with a manual pip install + script approach (pip install mergelore-indexer, then mergelore-index). Users who followed PR #10's guidance will need to completely rewrite their indexer workflows, creating confusion about the recommended deployment model.
Automatic collection deletion on embedding model changes · confidence: 0.70
The new code in qdrant_store.py automatically deletes and recreates Qdrant collections when embedding model dimensions change. While the README mentions this behavior ("indexer automatically recreates the Qdrant collection"), this is a destructive operation that silently removes indexed data without user confirmation. Given that PR #7 emphasized data privacy and storage transparency, this automatic deletion warrants explicit user awareness and potential safeguards.
Embedding model strategy shift from API-first to local-first (confidence: 0.75): PR Update version references to v0.2.1 #10 supported OpenAI's text-embedding-3-small as the default model. This PR inverts the strategy, making local FastEmbed the default and treating API models (OpenAI, Cohere) as optional extras requiring separate installation. While this improves cost and reduces API dependencies, it's a significant architectural reversal that affects the default behavior users expect from the documented tier.
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
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
Test plan