Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions docs/opengradient/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
4 changes: 4 additions & 0 deletions src/opengradient/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading