fix(doctor): skip /models health check for /anthropic endpoints (MiniMax-CN)#12162
Closed
zhengrick9-ship-it wants to merge 1 commit into
Closed
Conversation
…Max-CN) MiniMax-CN uses /anthropic as the primary surface; /v1/models 404s. Skip the health check for /anthropic endpoints to avoid false positives.
This was referenced Apr 22, 2026
Collaborator
|
same issue exists for MiniMax (Global) - |
Contributor
|
Thanks for the PR! This fix has already been superseded by more complete handling on What's on main now:
The current behavior on main is strictly richer than the proposed skip — it performs a real health check where possible and only falls back gracefully when the endpoint doesn't support Related: member @alt-glitch also flagged competing PRs #13780 and #14123 that address the same root issue; those are worth checking for any remaining gaps. |
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.
Problem
hermes doctorreports⚠ MiniMax (China) (HTTP 404)even when the API key is valid and working.Root cause:
MINIMAX_CN_BASE_URLishttps://api.minimaxi.com/anthropic. The health check rewrites/anthropic→/v1to check/v1/models, which doesn't exist for MiniMax-CN.Fix
Skip the
/modelshealth check for providers using/anthropicendpoints.Verification