Add local prompt-based image search app, dedupe manager, and Windows launchers#4
Open
Add local prompt-based image search app, dedupe manager, and Windows launchers#4
Conversation
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.
Motivation
.depsfolder and simplify common user errors (wrong Python, ComfyUI embedded Python).Description
image_prompt_search.pyto index images and perform semantic prompt searches usingsentence-transformers, and addstreamlit_image_search_app.pyto provide a local Streamlit UI.image_dedupe_manager.pyto detect exact and visual duplicates (SHA-256 + pHash), quarantine removed files into an app-managed recycle bin with manifest logging, and provide restore/purge operations.setup_windows.bat,diagnose_windows.bat,run_image_search_windows.bat, andrun_dedupe_windows.batto detect Python, install deps into.deps, verify imports, and expose interactive/CLI launchers for indexing, searching, UI, scanning, restoring, and purging.requirements-image-search.txtandrequirements-image-dedupe.txtand updateREADME.mdwith installation, usage, troubleshooting, and notes about drive/path handling,scan_summaryoutput, and no-venv setup.Testing
PIL,numpy,sentence_transformers,streamlit, andimagehashvia the setup check insetup_windows.batwhich completed successfully.python -m py_compile image_prompt_search.py streamlit_image_search_app.py image_dedupe_manager.py(invoked bydiagnose_windows.bat) which passed.Codex Task