feat(cli): add configurable backend image fallback tags via CLI options#8812
Closed
localai-bot wants to merge 2 commits intomudler:masterfrom
Closed
feat(cli): add configurable backend image fallback tags via CLI options#8812localai-bot wants to merge 2 commits intomudler:masterfrom
localai-bot wants to merge 2 commits intomudler:masterfrom
Conversation
added 2 commits
March 5, 2026 17:12
- Add WebSocket route handling for /v1/responses and /responses endpoints - Add WebSocket message types to schema (ORWebSocketClientMessage, ORWebSocketServerEvent, etc.) - Add connection-local cache types for response storage - Implement initial WebSocket infrastructure (handler to be added in next commit)
- Add three new CLI flags: --backend-images-release-tag, --backend-images-branch-tag, --backend-dev-suffix - Add corresponding fields to SystemState for passing configuration - Add WithBackendImagesReleaseTag, WithBackendImagesBranchTag, WithBackendDevSuffix options - Modify getFallbackTagValues to use SystemState instead of environment variables - Pass CLI options through to SystemState in run.go Signed-off-by: localai-bot <localai-bot@users.noreply.github.com> Signed-off-by: localai-bot <localai-bot@noreply.github.com>
✅ Deploy Preview for localai ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
Author
|
Closing duplicate PR - this was a re-creation attempt of PR #8674 which has been handled separately |
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 PR implements configurable backend image fallback tags via CLI options as requested in the original PR #8674.
Changes
--backend-images-release-tag,--backend-images-branch-tag,--backend-dev-suffixWithBackendImagesReleaseTag,WithBackendImagesBranchTag,WithBackendDevSuffixgetFallbackTagValuesto read from SystemState instead of environment variablesUsage
Users can now configure fallback tag patterns via CLI:
Or via environment variables:
This is a clean recreate of the original PR #8811 with only the relevant changes (no unrelated WebSocket or other changes).