feat: Add toggle mechanism to enable/disable models from loading on demand#9304
Merged
mudler merged 4 commits intomudler:masterfrom Apr 10, 2026
Merged
feat: Add toggle mechanism to enable/disable models from loading on demand#9304mudler merged 4 commits intomudler:masterfrom
mudler merged 4 commits intomudler:masterfrom
Conversation
…emand Implements mudler#9303 - Adds ability to disable models from being auto-loaded while keeping them in the collection. Backend changes: - Add Disabled field to ModelConfig struct with IsDisabled() getter - New ToggleModelEndpoint handler (PUT /models/toggle/:name/:action) - Request middleware returns 403 when disabled model is requested - Capabilities endpoint exposes disabled status Frontend changes: - Toggle switch in System > Models table Actions column - Visual indicators: dimmed row, red Disabled badge, muted icons - Tooltip describes toggle function on hover - Loading state while API call is in progress
mudler
reviewed
Apr 10, 2026
mudler
approved these changes
Apr 10, 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.
Implements #9303 - Adds a toggle mechanism to disable models from being auto-loaded while keeping them in the collection.\n\n## Changes\n\n### Backend\n- Added
Disabledfield to ModelConfig struct withIsDisabled()getter\n- NewToggleModelEndpointhandler (PUT /models/toggle/:name/:action)\n- Request middleware returns HTTP 403 when disabled model is requested\n- Capabilities endpoint exposes disabled status\n\n### Frontend\n- Toggle switch in System > Models table Actions column\n- Visual indicators: dimmed row, red Disabled badge, muted icons\n- Hover tooltip describes toggle function\n\n## Backward Compatibility\n-Disabledfield is optional - existing configs default to enabled\n- No breaking changes to existing API endpoints