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
1 change: 0 additions & 1 deletion scripts/track_llm_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
r"^Kimi-K2\.[56]$", # Kimi-K2.5 and K2.6 (K2-Thinking superseded before frontend support)
r"^Nemotron-3-Super$", # Nemotron-3-Super only
r"^(?i:trinity-large-thinking)$", # Arcee Trinity Large Thinking
r"^DeepSeek-V4-Pro$", # DeepSeek-V4-Pro only
]

# Global model aliases map.
Expand Down
6 changes: 3 additions & 3 deletions tests/test_track_llm_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ def test_trinity_large_thinking_is_tier_1(self):
assert get_model_tier("trinity-large-thinking") == 1
assert get_model_tier("Trinity-Large-Thinking") == 1

def test_deepseek_v4_pro_is_tier_1(self):
"""DeepSeek-V4-Pro should be tier 1 (DeepSeek-V3.2-Reasoner remains tier 2)."""
assert get_model_tier("DeepSeek-V4-Pro") == 1
def test_deepseek_models_are_tier_2(self):
"""DeepSeek models (V4-Pro and V3.2-Reasoner) should be tier 2."""
assert get_model_tier("DeepSeek-V4-Pro") == 2
assert get_model_tier("DeepSeek-V3.2-Reasoner") == 2

def test_other_models_are_tier_2(self):
Expand Down
Loading