mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
- API routers, ACA modules, integrations (draft operators) - Docs, landing pages, scripts (launch readiness, scorecard) - Tests and CI workflow updates for Dealix Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
648 B
Python
17 lines
648 B
Python
"""Static provider labels for routing display."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
_PROVIDERS: list[dict[str, Any]] = [
|
|
{"id": "anthropic", "label": "Anthropic", "tasks_default": ["strategic_reasoning", "arabic_copywriting"]},
|
|
{"id": "openai", "label": "OpenAI", "tasks_default": ["classification", "summarization"]},
|
|
{"id": "google", "label": "Google Gemini", "tasks_default": ["vision_analysis", "meeting_analysis"]},
|
|
{"id": "groq", "label": "Groq", "tasks_default": ["low_cost_bulk", "extraction"]},
|
|
]
|
|
|
|
|
|
def list_providers() -> dict[str, Any]:
|
|
return {"providers": list(_PROVIDERS), "demo": True}
|