Conversation
- Added vector_search_service.py with Qdrant integration * store_canvas_embedding() for storing 512-dim CLIP embeddings * search_by_embedding() for similarity search * batch operations and collection management - Updated search_algorithms.py to use real embeddings * Replaced random score stubs with CLIP-based semantic search * text_search() now uses embed_text() + vector similarity * image_search() now uses embed_image() + vector similarity * Graceful fallback to random if AI services unavailable - Added Qdrant configuration to config.py - Added dependencies: qdrant-client, torch, open_clip_torch, pillow - Added Qdrant service to docker-compose.yml - Created setup guides for local development Ready for testing - NOT pushed to remote yet
Outlines how to get the embedding worker up / qdrant db for working ai search example
Removed detailed next steps for AI search implementation, including completed tasks, missing features, and implementation order.
This reverts commit 34658c7.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
✅ Quick Check success Fast validation completed for commit 2e15e4d This is a quick feedback run. Full test suite will run on merge to main. |
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.
Resolves issues #24, #28, and #29