feat(03-02): add search and embeddings Tier 3 providers

- Perplexity (pplx- prefix, high confidence)
- You.com (keyword-only)
- Voyage AI (pa- prefix, medium confidence)
- Jina AI (jina_ prefix, high confidence)
- Unstructured.io (keyword-only)
- AssemblyAI (hex32, low confidence)
This commit is contained in:
salvacybersec
2026-04-05 14:41:33 +03:00
parent a9ee75eb45
commit 7ad9588212
12 changed files with 236 additions and 0 deletions

21
providers/perplexity.yaml Normal file
View File

@@ -0,0 +1,21 @@
format_version: 1
name: perplexity
display_name: Perplexity AI
tier: 3
last_verified: "2026-04-05"
keywords:
- "perplexity"
- "PERPLEXITY_API_KEY"
- "pplx-"
- "api.perplexity.ai"
patterns:
- regex: 'pplx-[A-Za-z0-9]{48,}'
entropy_min: 4.0
confidence: high
verify:
method: POST
url: https://api.perplexity.ai/chat/completions
headers:
Authorization: "Bearer {KEY}"
valid_status: [200, 400]
invalid_status: [401, 403]