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
2 changes: 2 additions & 0 deletions docs/opengradient/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,8 @@ auditability and tamper-proof AI inference.
* static `CLAUDE_OPUS_4_8`
* static `CLAUDE_SONNET_4_5`
* static `CLAUDE_SONNET_4_6`
* static `DEEPSEEK_V4_FLASH`
* static `DEEPSEEK_V4_PRO`
* static `GEMINI_2_5_FLASH`
* static `GEMINI_2_5_FLASH_IMAGE`
* static `GEMINI_2_5_FLASH_LITE`
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"

# DeepSeek models via TEE (served through BytePlus ModelArk)
DEEPSEEK_V4_FLASH = "bytedance/deepseek-v4-flash"
DEEPSEEK_V4_PRO = "bytedance/deepseek-v4-pro"

# Nous Research Hermes models via TEE (Nous Portal)
HERMES_4_405B = "nous/hermes-4-405b"
HERMES_4_70B = "nous/hermes-4-70b"
Expand Down
Loading