mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-18 09:51:59 +00:00
The /model interactive picker resolved a base_url from user credentials but never passed it to ProviderProfile.fetch_models(), causing the picker to always query the provider's hardcoded default endpoint instead of the user's custom URL (e.g. a company litellm proxy). - providers/base.py: add optional base_url parameter to fetch_models() - hermes_cli/models.py: pass resolved base_url to fetch_models() - Update all subclass overrides for signature compatibility - Add 6 regression tests covering override, fallback, and integration
53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
"""Native Anthropic provider profile."""
|
|
|
|
import json
|
|
import logging
|
|
import urllib.request
|
|
|
|
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 urllib.request.urlopen(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)
|