feat(03-01): add 8 Tier 4 Chinese providers (DeepSeek, Zhipu, Moonshot, Qwen, Baidu, ByteDance, 01.AI, MiniMax)

- DeepSeek, Moonshot, Qwen use documented sk- prefix patterns
- Zhipu, Baidu, ByteDance use keyword-only detection (no documented key format)
- All dual-located in providers/ and pkg/providers/definitions/
This commit is contained in:
salvacybersec
2026-04-05 14:41:50 +03:00
parent 469ed0c0dd
commit 35dbbc71f1
16 changed files with 322 additions and 0 deletions

22
providers/deepseek.yaml Normal file
View File

@@ -0,0 +1,22 @@
format_version: 1
name: deepseek
display_name: DeepSeek
tier: 4
last_verified: "2026-04-05"
keywords:
- "deepseek"
- "DEEPSEEK_API_KEY"
- "api.deepseek.com"
- "deepseek-chat"
- "deepseek-coder"
patterns:
- regex: 'sk-[a-f0-9]{32}'
entropy_min: 3.5
confidence: medium
verify:
method: GET
url: https://api.deepseek.com/v1/models
headers:
Authorization: "Bearer {KEY}"
valid_status: [200]
invalid_status: [401, 403]