feat: add DeepSeek extreme reasoning tier

This commit is contained in:
wuyang
2026-07-26 17:40:51 +08:00
parent ade5ea1210
commit 2e8e81c790
25 changed files with 567 additions and 30 deletions
+5
View File
@@ -6,3 +6,8 @@ import pytest
def test_internal_secrets_must_be_at_least_32_bytes(settings) -> None:
with pytest.raises(RuntimeError, match="at least 32 bytes"):
replace(settings, internal_gateway_key="too-short").validate_gateway()
def test_runtime_requires_deepseek_key_for_extreme_tier(settings) -> None:
with pytest.raises(RuntimeError, match="DEEPSEEK_API_KEY"):
replace(settings, deepseek_api_key="").validate_runtime()