Containerization Support & Dynamic Model Discovery#114
Open
skylarblu4650 wants to merge 6 commits intoseverian42:mainfrom
Open
Containerization Support & Dynamic Model Discovery#114skylarblu4650 wants to merge 6 commits intoseverian42:mainfrom
skylarblu4650 wants to merge 6 commits intoseverian42:mainfrom
Conversation
…exer container. services prompt tuning, data management now up
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.
This release introduces official containerization support for the GraphRAG Local UI, drastically simplifying the deployment process. With the new Containerfile, you can now spin up the entire stack—including the API, UI, and Indexer— in seconds using Podman or Docker.
Also introduced dynamic local model discovery. Previously, there was an issue where "ghost" models were detected, and when deleted the hard coding, available models could not be picked up. Replaced the static model detection logic with a real time API handshake -- UI queries your local inference server on demand.
Tested on Podman v5.8.0 on a MacBook Pro (M4 Chip)
Base Image: Python 3.12-slim
Pinned some dependencies and added uv for high-speed builds.
A special thank you to the original authors at severian42/GraphRAG-Local-UI for the foundation.