From 6aca50fbaa9b8a5774e61b698b18c7b4adb14510 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 9 Jun 2026 16:02:43 +0000 Subject: [PATCH] Add Nous Research Hermes 4 models to TEE_LLM Add HERMES_4_405B and HERMES_4_70B to the TEE_LLM enum, exposing the Nous Research Hermes 4 family (already supported by the tee-gateway under provider 'nous') through the SDK. Update the README model list and regenerate docs. --- README.md | 4 ++++ docs/opengradient/types.md | 2 ++ src/opengradient/types.py | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/README.md b/README.md index 638d8cf..b2cb089 100644 --- a/README.md +++ b/README.md @@ -275,6 +275,10 @@ The SDK provides access to models from multiple providers via the `og.TEE_LLM` e - Grok 4 Fast - Grok 4.1 Fast (reasoning and non-reasoning) +#### Nous Research +- Hermes 4 405B +- Hermes 4 70B + For a complete list, reference the `og.TEE_LLM` enum or consult the [API documentation](https://docs.opengradient.ai/api_reference/python_sdk/). ## Alpha Testnet Features diff --git a/docs/opengradient/types.md b/docs/opengradient/types.md index 0cc1ea6..5542493 100644 --- a/docs/opengradient/types.md +++ b/docs/opengradient/types.md @@ -509,6 +509,8 @@ auditability and tamper-proof AI inference. * static `GROK_4_20_REASONING` * static `GROK_4_FAST` * static `GROK_CODE_FAST_1` +* static `HERMES_4_405B` +* static `HERMES_4_70B` * static `O3` * static `O4_MINI` * static `SEED_1_6` diff --git a/src/opengradient/types.py b/src/opengradient/types.py index c156704..2846ad1 100644 --- a/src/opengradient/types.py +++ b/src/opengradient/types.py @@ -598,6 +598,10 @@ class TEE_LLM(str, Enum): SEED_1_8 = "bytedance/seed-1.8" SEED_2_0_LITE = "bytedance/seed-2.0-lite" + # Nous Research Hermes models via TEE (Nous Portal) + HERMES_4_405B = "nous/hermes-4-405b" + HERMES_4_70B = "nous/hermes-4-70b" + @dataclass class ResponseFormat: