b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
"""Native Anthropic provider profile."""
|
|
|
|
import json
|
|
import logging
|
|
import urllib.request
|
|
|
|
from hermes_cli.urllib_security import open_credentialed_url
|
|
from providers import register_provider
|
|
from providers.base import ProviderProfile
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class AnthropicProfile(ProviderProfile):
|
|
"""Native Anthropic — uses x-api-key header, not Bearer."""
|
|
|
|
def fetch_models(
|
|
self,
|
|
*,
|
|
api_key: str | None = None,
|
|
base_url: str | None = None,
|
|
timeout: float = 8.0,
|
|
) -> list[str] | None:
|
|
"""Anthropic uses x-api-key header and anthropic-version."""
|
|
if not api_key:
|
|
return None
|
|
try:
|
|
req = urllib.request.Request("https://api.anthropic.com/v1/models")
|
|
req.add_header("x-api-key", api_key)
|
|
req.add_header("anthropic-version", "2023-06-01")
|
|
req.add_header("Accept", "application/json")
|
|
with open_credentialed_url(req, timeout=timeout) as resp:
|
|
data = json.loads(resp.read().decode())
|
|
return [
|
|
m["id"]
|
|
for m in data.get("data", [])
|
|
if isinstance(m, dict) and "id" in m
|
|
]
|
|
except Exception as exc:
|
|
logger.debug("fetch_models(anthropic): %s", exc)
|
|
return None
|
|
|
|
|
|
anthropic = AnthropicProfile(
|
|
name="anthropic",
|
|
aliases=("claude", "claude-oauth", "claude-code"),
|
|
api_mode="anthropic_messages",
|
|
env_vars=("ANTHROPIC_API_KEY", "ANTHROPIC_TOKEN", "CLAUDE_CODE_OAUTH_TOKEN"),
|
|
base_url="https://api.anthropic.com",
|
|
auth_type="api_key",
|
|
default_aux_model="claude-haiku-4-5-20251001",
|
|
)
|
|
|
|
register_provider(anthropic)
|