From f4ba97ad9ad45c6fd2a4b876301d00f023424304 Mon Sep 17 00:00:00 2001 From: Feranmi10 <89228157+Feranmi10@users.noreply.github.com> Date: Thu, 30 Apr 2026 19:44:33 -0700 Subject: [PATCH] fix(status): add NVIDIA_API_KEY to hermes status API keys display MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #16082 The `hermes status` command listed provider API keys under the ◆ API Keys section but NVIDIA_API_KEY was absent. Users configured with NVIDIA NIM had no way to verify their key was set from status output. Add it alongside the other inference provider keys. --- hermes_cli/status.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hermes_cli/status.py b/hermes_cli/status.py index fb2d010a4..38b22a03e 100644 --- a/hermes_cli/status.py +++ b/hermes_cli/status.py @@ -125,6 +125,7 @@ def show_status(args): keys = { "OpenRouter": "OPENROUTER_API_KEY", "OpenAI": "OPENAI_API_KEY", + "NVIDIA": "NVIDIA_API_KEY", "Z.AI/GLM": "GLM_API_KEY", "Kimi": "KIMI_API_KEY", "StepFun Step Plan": "STEPFUN_API_KEY",