fix: configure inference route after provider creation - #40
Merged
sauagarwa merged 3 commits intoAug 20, 2026
Merged
Conversation
apply_bom.py now calls openshell inference set after creating the first inference-capable provider. The model is specified in the BOM provider profile. Without this, inference.local returns "not configured". Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add clean-stale-operators as a prerequisite to pattern-install. Removes CNV CRDs with broken conversion webhooks and stuck ArgoCD app finalizers left from a previous uninstall. Safe no-op on a clean cluster. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The BOM refactor put cuda-sandbox in workspace cuda-dev, but the Makefile targets hardcoded .default. Now all targets accept WORKSPACE (defaults to "default"). Usage: make nemoclaw-tui SANDBOX_NAME=cuda-sandbox WORKSPACE=cuda-dev make openclaw-tui SANDBOX_NAME=notebook make openclaw-gui SANDBOX_NAME=notebook GUI_PORT=28789 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
mtalvi
self-requested a review
August 20, 2026 07:39
mtalvi
approved these changes
Aug 20, 2026
mtalvi
left a comment
Collaborator
There was a problem hiding this comment.
LGTM!
Tested on my cluster and all works.
Collaborator
|
Hi, while testing this fix end-to-end on fresh clusters, I found issues that prevent the TUI and GUI from working after deployment. Opened PR #43 to address them |
Collaborator
That is strange, because when I tested I did not face those issues. Maybe we are doing something differently. Let's sync. |
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.
Summary
apply_bom.pynow callsopenshell inference setafter creating the first inference-capable providermodelfield to BOM provider profiles (data-science/default and cuda-dev)Problem
The BOM refactor in PR #34 missed porting
openshell inference setfrom the old monolithic setup script. The gateway's inference route was never configured, soinference.localreturned "Not configured" and the OpenClaw TUI failed with "LLM request failed."The old script (pre-#34) had:
This was lost during the refactor to
apply_bom.py.Test plan
openshell inference getshows configured route🤖 Generated with Claude Code