feat: add MUSA and OpenVINO support using upstream llama.cpp images#897
Merged
Conversation
Add musa and openvino as new LLAMA_SERVER_VARIANT options, leveraging the
official ghcr.io/ggml-org/llama.cpp server-musa and server-openvino images.
Changes:
- scripts/resolve-llama-upstream-image.sh: map musa -> server-musa,
openvino -> server-openvino
- Makefile: add docker-build-musa, docker-run-musa, docker-build-openvino,
docker-run-openvino targets; restrict both to linux/amd64; update help
- .github/workflows/release.yml: add MUSA and OpenVINO image build steps
with tags docker/model-runner:{tag}-musa and docker/model-runner:{tag}-openvino
Contributor
There was a problem hiding this comment.
Code Review
This pull request adds support for MUSA and OpenVINO backends by introducing new Docker image definitions, build and run targets in the Makefile, and updating the upstream image resolution script. The changes correctly restrict these variants to the linux/amd64 platform and update the help documentation accordingly. I have no feedback to provide.
ericcurtin
approved these changes
Apr 30, 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.
Add musa and openvino as new LLAMA_SERVER_VARIANT options, leveraging the official ghcr.io/ggml-org/llama.cpp server-musa and server-openvino images.
Changes: