From f27fcb6a82b8487174ca941c15e7a5887371eede Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Tue, 5 May 2026 19:15:10 -0700 Subject: [PATCH] feat(models): add x-ai/grok-4.3 to OpenRouter + Nous Portal curated lists (#20497) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Endpoint validated over 6 conversational turns with tool calls (9 API calls, 3 tool calls, 0 failures) and an 8-request burst (8/8 ok, 0 rate limits). Latency ~5-10s/call — slower than grok-4.20 but expected for a reasoning model. - hermes_cli/models.py: add to OPENROUTER_MODELS and _PROVIDER_MODELS['nous'] - website/static/api/model-catalog.json: regenerated --- hermes_cli/models.py | 2 ++ website/static/api/model-catalog.json | 9 ++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/hermes_cli/models.py b/hermes_cli/models.py index d2d562a784..8b00cf5d10 100644 --- a/hermes_cli/models.py +++ b/hermes_cli/models.py @@ -61,6 +61,7 @@ OPENROUTER_MODELS: list[tuple[str, str]] = [ ("z-ai/glm-5v-turbo", ""), ("z-ai/glm-5-turbo", ""), ("x-ai/grok-4.20", ""), + ("x-ai/grok-4.3", ""), ("nvidia/nemotron-3-super-120b-a12b", ""), ("nvidia/nemotron-3-super-120b-a12b:free", "free"), ("arcee-ai/trinity-large-preview:free", "free"), @@ -182,6 +183,7 @@ _PROVIDER_MODELS: dict[str, list[str]] = { "z-ai/glm-5v-turbo", "z-ai/glm-5-turbo", "x-ai/grok-4.20-beta", + "x-ai/grok-4.3", "nvidia/nemotron-3-super-120b-a12b", "arcee-ai/trinity-large-thinking", "openai/gpt-5.5-pro", diff --git a/website/static/api/model-catalog.json b/website/static/api/model-catalog.json index 31b6b3a9b1..18aefdd89b 100644 --- a/website/static/api/model-catalog.json +++ b/website/static/api/model-catalog.json @@ -1,6 +1,6 @@ { "version": 1, - "updated_at": "2026-05-06T00:37:26Z", + "updated_at": "2026-05-06T02:14:51Z", "metadata": { "source": "hermes-agent repo", "docs": "https://hermes-agent.nousresearch.com/docs/reference/model-catalog" @@ -128,6 +128,10 @@ "id": "x-ai/grok-4.20", "description": "" }, + { + "id": "x-ai/grok-4.3", + "description": "" + }, { "id": "nvidia/nemotron-3-super-120b-a12b", "description": "" @@ -242,6 +246,9 @@ { "id": "x-ai/grok-4.20-beta" }, + { + "id": "x-ai/grok-4.3" + }, { "id": "nvidia/nemotron-3-super-120b-a12b" },