Bug Description
hermes doctor MiniMax health check fails with HTTP 404. The check uses https://api.minimax.io/v1/models and https://api.minimaxi.com/v1/models, but these endpoints do not exist.
Steps to Reproduce
- Set
MINIMAX_API_KEY in ~/.hermes/.env
- Run
hermes doctor
- Observe: MiniMax shows ⚠ HTTP 404
Verified
-
Tested all MiniMax endpoints directly — all return 404:
https://api.minimax.io/v1/models → 404
https://api.minimax.io/anthropic/v1/models → 404
https://api.minimax.io/api/paas/v4/models → 404
https://api.minimaxi.com/v1/models → 404
-
The API key itself is valid (125 chars, sk-cp-...), actual MiniMax API calls work fine in hermes-agent.
Root Cause
Commit d442f25a (fix: align MiniMax provider with official API docs) changed the health check from None (disabled) to using https://api.minimax.io/v1/models. However this endpoint does not exist on MiniMax servers.
Expected Fix
Either:
- Revert MiniMax health check to
supports_health_check=False (like before d442f25), OR
- Find the correct working
/models endpoint for MiniMax API v2
Environment
- hermes-agent: v0.9.0 (2026.4.13)
- OS: macOS
- Python: 3.11.15
Bug Description
hermes doctorMiniMax health check fails with HTTP 404. The check useshttps://api.minimax.io/v1/modelsandhttps://api.minimaxi.com/v1/models, but these endpoints do not exist.Steps to Reproduce
MINIMAX_API_KEYin ~/.hermes/.envhermes doctorVerified
Tested all MiniMax endpoints directly — all return 404:
https://api.minimax.io/v1/models→ 404https://api.minimax.io/anthropic/v1/models→ 404https://api.minimax.io/api/paas/v4/models→ 404https://api.minimaxi.com/v1/models→ 404The API key itself is valid (125 chars,
sk-cp-...), actual MiniMax API calls work fine in hermes-agent.Root Cause
Commit
d442f25a(fix: align MiniMax provider with official API docs) changed the health check fromNone(disabled) to usinghttps://api.minimax.io/v1/models. However this endpoint does not exist on MiniMax servers.Expected Fix
Either:
supports_health_check=False(like before d442f25), OR/modelsendpoint for MiniMax API v2Environment