fix: register vertex provider in CLI menus - #68249
Closed
zmack12344321 wants to merge 1 commit into
Closed
Conversation
- Update PROVIDER_REGISTRY auto-extension to allow 'vertex' auth_type - Add 'vertex' overlay and aliases to providers.py - Fixes issue where Vertex AI is working at runtime but invisible in /model
Collaborator
Duplicate of #56688: it already provides the Vertex registry and overlay wiring in a broader, tested implementation. This PR also repeats overlay and alias entries within its own diff; please consolidate any wanted changes into the canonical PR. |
Author
|
Closing as duplicate of #56688 which provides a more comprehensive fix with tests. Consolidated changes locally. |
This was referenced Jul 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.
Summary
The
vertexprovider plugin (plugins/model-providers/vertex/) works at the engine level, but is invisible to the CLI's/modelmenu andhermes doctorbecause the auto-extension loop inhermes_cli/auth.pyexplicitly filters out non-API-key providers.Changes
PROVIDER_REGISTRYauto-extension loop inhermes_cli/auth.pyto allow thevertexauth type.vertexoverlay and human-friendly aliases tohermes_cli/providers.py.Verification
vertexnow appears in the/modelmenu.hermes doctornow correctly resolves Vertex credentials via ADC.