feat: Core AI Pipeline, Vector Relationships, and E2E Dockerization - #13
Merged
Merged
Conversation
…/WhereTF-backend into Changes_Prakhar
RK-NerdyBirdy
approved these changes
Jul 12, 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.
Overview
This PR introduces the core AI and semantic search engines for the WhereTF backend, fully containerized for a zero-configuration local developer environment. All dependencies, including the local LLM and embedding models, are fully offline and privacy-preserving.
Architecture Highlights
POST /search/route. Integrates an offlineqwen2:0.5bmodel via Ollama to hallucinate highly technical context, vastly improving vector search accuracy.pgvectormath engine utilizing cosine distance (<=>) to automatically map and score relationships between uploaded documents.Dockerfileto drop build times.Bug Fixes
UnboundLocalErrorin the indexing service wherefile_objcleanup would crash the pipeline if EasyOCR failed or returned empty content.urllibtimeouts to allow the local CPU to handle the initial LLM weight-loading without dropping the client connection.Testing Steps
docker compose up -d --buildPOST /upload/.GET /files/{id}/relatedto verify the pgvector similarity score.POST /search/and verify theexpanded_queryfield is populated by the local LLM.