Skip to content
Closed
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
6 changes: 5 additions & 1 deletion src/opengradient/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,7 @@ class TEE_LLM(str, Enum):
CLAUDE_OPUS_4_6 = "anthropic/claude-opus-4-6"
CLAUDE_OPUS_4_7 = "anthropic/claude-opus-4-7"
CLAUDE_OPUS_4_8 = "anthropic/claude-opus-4-8"
CLAUDE_FABLE_5 = "anthropic/claude-fable-5"

# Google models via TEE
# Note: gemini-2.5-flash, gemini-2.5-pro, and gemini-2.5-flash-lite are scheduled
Expand All @@ -583,13 +584,15 @@ class TEE_LLM(str, Enum):
GEMINI_3_1_FLASH_IMAGE = "google/gemini-3.1-flash-image"

# xAI Grok models via TEE
GROK_4_3 = "x-ai/grok-4.3"
GROK_4 = "x-ai/grok-4"
GROK_4_FAST = "x-ai/grok-4-fast"
GROK_4_1_FAST = "x-ai/grok-4-1-fast"
GROK_4_1_FAST_NON_REASONING = "x-ai/grok-4-1-fast-non-reasoning"
GROK_4_20_REASONING = "x-ai/grok-4.20-reasoning"
GROK_4_20_NON_REASONING = "x-ai/grok-4.20-non-reasoning"
GROK_CODE_FAST_1 = "x-ai/grok-code-fast-1"
GROK_2_IMAGE = "x-ai/grok-2-image"

# xAI image-generation models via TEE (Aurora, dedicated /images/generations endpoint).
# Billed at a flat rate per image. Images are returned on ``TextGenerationOutput.images``
Expand All @@ -600,8 +603,9 @@ class TEE_LLM(str, Enum):
SEED_1_6 = "bytedance/seed-1.6"
SEED_1_8 = "bytedance/seed-1.8"
SEED_2_0_LITE = "bytedance/seed-2.0-lite"
SEEDREAM_4_0 = "bytedance/seedream-4.0"

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

Expand Down
Loading