mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-02 02:01:47 +00:00
feat: provider modules — ProviderProfile ABC, 29 providers, fetch_models, transport single-path Introduces providers/ as the single source of truth for every inference provider. All 29 providers declared with correct data cross-checked against auth.py, runtime_provider.py and auxiliary_client.py. Rebased onto main (30307a980). Incorporates post-salvage fixes from56724147e(gmi aux model google/gemini-3.1-flash-lite-preview, already set in providers/gmi.py).
58 lines
2 KiB
Python
58 lines
2 KiB
Python
"""Copilot / GitHub Models provider profile.
|
|
|
|
Copilot uses per-model api_mode routing:
|
|
- GPT-5+ / Codex models → codex_responses
|
|
- Claude models → anthropic_messages
|
|
- Everything else → chat_completions (this profile covers that subset)
|
|
|
|
Key quirks for the chat_completions subset:
|
|
- Editor attribution headers (via copilot_default_headers())
|
|
- GitHub Models reasoning extra_body (model-catalog gated)
|
|
"""
|
|
|
|
from typing import Any
|
|
|
|
from providers import register_provider
|
|
from providers.base import ProviderProfile
|
|
|
|
|
|
class CopilotProfile(ProviderProfile):
|
|
"""GitHub Copilot / GitHub Models — editor headers + reasoning."""
|
|
|
|
def build_api_kwargs_extras(
|
|
self,
|
|
*,
|
|
model: str | None = None,
|
|
reasoning_config: dict | None = None,
|
|
supports_reasoning: bool = False,
|
|
**ctx,
|
|
) -> tuple[dict[str, Any], dict[str, Any]]:
|
|
extra_body: dict[str, Any] = {}
|
|
if supports_reasoning and model:
|
|
try:
|
|
from hermes_cli.models import github_model_reasoning_efforts
|
|
|
|
supported_efforts = github_model_reasoning_efforts(model)
|
|
if supported_efforts and reasoning_config:
|
|
effort = reasoning_config.get("effort", "medium")
|
|
# Normalize non-standard effort levels to the nearest supported
|
|
if effort == "xhigh":
|
|
effort = "high"
|
|
if effort in supported_efforts:
|
|
extra_body["reasoning"] = {"effort": effort}
|
|
elif supported_efforts:
|
|
extra_body["reasoning"] = {"effort": "medium"}
|
|
except Exception:
|
|
pass
|
|
return extra_body, {}
|
|
|
|
|
|
copilot = CopilotProfile(
|
|
name="copilot",
|
|
aliases=("github-copilot", "github-models", "github-model", "github"),
|
|
env_vars=("COPILOT_GITHUB_TOKEN", "GH_TOKEN", "GITHUB_TOKEN"),
|
|
base_url="https://api.githubcopilot.com",
|
|
auth_type="copilot",
|
|
)
|
|
|
|
register_provider(copilot)
|