feat(02-02): add Azure OpenAI, Meta AI, Cohere provider YAMLs

- 3 Tier 1 medium/low-confidence providers with keyword anchoring
- Dual-located in providers/ and pkg/providers/definitions/
- Registry test passes
This commit is contained in:
salvacybersec
2026-04-05 14:11:19 +03:00
parent c0d3add7e1
commit bca842271e
6 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
format_version: 1
name: azure-openai
display_name: Azure OpenAI
tier: 1
last_verified: "2026-04-05"
keywords:
- "azure"
- "openai.azure.com"
- "azure_openai"
- "cognitiveservices"
- "AZURE_OPENAI_API_KEY"
- "AZURE_OPENAI_KEY"
patterns:
- regex: '[a-f0-9]{32}'
entropy_min: 3.5
confidence: low
verify:
method: GET
url: ""
headers: {}
valid_status: []
invalid_status: []

22
providers/cohere.yaml Normal file
View File

@@ -0,0 +1,22 @@
format_version: 1
name: cohere
display_name: Cohere
tier: 1
last_verified: "2026-04-05"
keywords:
- "cohere"
- "CO_API_KEY"
- "COHERE_API_KEY"
- "cohere_api"
- "api.cohere.ai"
patterns:
- regex: '[a-zA-Z0-9]{40}'
entropy_min: 4.0
confidence: low
verify:
method: GET
url: https://api.cohere.ai/v1/models
headers:
Authorization: "Bearer {KEY}"
valid_status: [200]
invalid_status: [401, 403]

21
providers/meta-ai.yaml Normal file
View File

@@ -0,0 +1,21 @@
format_version: 1
name: meta-ai
display_name: Meta AI (Llama API)
tier: 1
last_verified: "2026-04-05"
keywords:
- "meta_llama"
- "llama_api"
- "META_LLAMA_API_KEY"
- "api.llama.com"
patterns:
- regex: 'LLM\|[A-Za-z0-9_\-]{30,}'
entropy_min: 3.5
confidence: low
verify:
method: GET
url: https://api.llama.com/v1/models
headers:
Authorization: "Bearer {KEY}"
valid_status: [200]
invalid_status: [401, 403]