core/config: default DeepSeek models v4-flash and v4-pro

When preset deepseek omits models, seed deepseek-v4-flash and
deepseek-v4-pro as text-capable entries for selection and docs.
This commit is contained in:
2026-07-15 13:57:29 +08:00
parent fb61f6bc32
commit 2052967824
7 changed files with 40 additions and 4 deletions
@@ -43,6 +43,8 @@ def test_deepseek_openai_convention() -> None:
client = create_client(provider)
assert isinstance(client, DeepseekOpenAIClient)
assert provider_to_openai_config(provider).base_url == "https://api.deepseek.com/v1"
assert "deepseek-v4-flash" in provider.models
assert "deepseek-v4-pro" in provider.models
def test_deepseek_anthropic_convention_not_implemented() -> None: