mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-08-06 21:48:39 -04:00
b9cafd67a1
* feat(models): define capability schema and readers * fix(models): harden Google catalog probing Restrict native catalog probing to the Gemini host, keep provider keys out of request URLs, filter non-chat model resources, and preserve the manual refresh default in the built-in Google add flow.
312 lines
9.9 KiB
Python
312 lines
9.9 KiB
Python
"""Shared helpers for vendor-specific model capability readers.
|
|
|
|
Readers in this package normalize already-fetched provider payload shapes and
|
|
explicit provider fields. They do not perform network I/O and must not infer
|
|
authoritative capability from model IDs, names, display names, or ownership
|
|
labels.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import hashlib
|
|
from collections.abc import Iterable, Mapping
|
|
from dataclasses import dataclass, field
|
|
from typing import Any, Protocol
|
|
from urllib.parse import urlparse
|
|
|
|
from src import model_capabilities as mc
|
|
|
|
|
|
VENDOR_GENERIC_OPENAI = "generic_openai"
|
|
VENDOR_OPENAI = "openai"
|
|
VENDOR_OPENROUTER = "openrouter"
|
|
VENDOR_GOOGLE = "google"
|
|
VENDOR_ANTHROPIC = "anthropic"
|
|
VENDOR_OLLAMA = "ollama"
|
|
VENDOR_LMSTUDIO = "lmstudio"
|
|
VENDOR_LLAMACPP = "llamacpp"
|
|
VENDOR_VLLM = "vllm"
|
|
VENDOR_SGLANG = "sglang"
|
|
VENDOR_HUGGINGFACE = "huggingface"
|
|
VENDOR_UNKNOWN = "unknown"
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class ModelCapabilityRecord:
|
|
vendor: str
|
|
model_id: str
|
|
capability: mc.ModelCapability
|
|
display_name: str = ""
|
|
stable_model_id: str = ""
|
|
capability_assertions: tuple[mc.CapabilityAssertion, ...] = ()
|
|
deterministic_controls: tuple[mc.DeterministicControl, ...] = ()
|
|
raw: Mapping[str, Any] = field(default_factory=dict)
|
|
|
|
def __post_init__(self) -> None:
|
|
if not self.stable_model_id:
|
|
object.__setattr__(self, "stable_model_id", stable_model_id_for(self.vendor, self.model_id))
|
|
if not self.capability_assertions and self.capability.capabilities:
|
|
object.__setattr__(
|
|
self,
|
|
"capability_assertions",
|
|
mc.capability_assertions_from_capability(
|
|
self.capability,
|
|
status=mc.ASSERTION_CLAIMED,
|
|
source=self.capability.source,
|
|
confidence=self.capability.confidence,
|
|
),
|
|
)
|
|
|
|
def to_dict(self, *, include_raw: bool = False) -> dict[str, Any]:
|
|
data = {
|
|
"vendor": self.vendor,
|
|
"model_id": self.model_id,
|
|
"stable_model_id": self.stable_model_id,
|
|
"display_name": self.display_name,
|
|
"capability": self.capability.to_dict(),
|
|
"capability_assertions": [assertion.to_dict() for assertion in self.capability_assertions],
|
|
"deterministic_controls": [control.to_dict() for control in self.deterministic_controls],
|
|
}
|
|
if include_raw:
|
|
data["raw"] = dict(self.raw)
|
|
return data
|
|
|
|
|
|
class CapabilityReader(Protocol):
|
|
vendor: str
|
|
|
|
def records_from_payload(
|
|
self,
|
|
payload: Mapping[str, Any],
|
|
*,
|
|
endpoint_id: Any = "",
|
|
base_url: Any = "",
|
|
) -> tuple[ModelCapabilityRecord, ...]:
|
|
"""Normalize a provider model-list payload into capability records."""
|
|
|
|
|
|
def as_mapping(value: Any) -> Mapping[str, Any]:
|
|
return value if isinstance(value, Mapping) else {}
|
|
|
|
|
|
def as_list(value: Any) -> list[Any]:
|
|
if value is None:
|
|
return []
|
|
if isinstance(value, list):
|
|
return value
|
|
if isinstance(value, tuple):
|
|
return list(value)
|
|
return [value]
|
|
|
|
|
|
def compact_str(value: Any) -> str:
|
|
return str(value or "").strip()
|
|
|
|
|
|
def _identity_part(value: Any) -> str:
|
|
text = compact_str(value).lower()
|
|
out = []
|
|
for char in text:
|
|
out.append(char if char.isalnum() or char in {"-", "_", ".", "/", ":"} else "_")
|
|
return "".join(out).strip("_") or "unknown"
|
|
|
|
|
|
def _base_url_scope(base_url: Any) -> str:
|
|
parsed = urlparse(compact_str(base_url))
|
|
if not parsed.hostname:
|
|
return ""
|
|
port = f":{parsed.port}" if parsed.port else ""
|
|
path = parsed.path.rstrip("/")
|
|
normalized = f"{parsed.scheme or 'http'}://{parsed.hostname.lower()}{port}{path}"
|
|
digest = hashlib.sha256(normalized.encode("utf-8")).hexdigest()[:12]
|
|
return f"url:{digest}"
|
|
|
|
|
|
def stable_model_id_for(vendor: Any, model_id: Any, *, endpoint_id: Any = "", base_url: Any = "") -> str:
|
|
vendor_part = _identity_part(vendor or VENDOR_UNKNOWN)
|
|
model_part = _identity_part(model_id)
|
|
endpoint = compact_str(endpoint_id)
|
|
if endpoint:
|
|
scope = f"endpoint:{_identity_part(endpoint)}"
|
|
else:
|
|
scope = _base_url_scope(base_url) or "global"
|
|
return f"{vendor_part}|{scope}|{model_part}"
|
|
|
|
|
|
def model_id_from(raw: Mapping[str, Any], *keys: str) -> str:
|
|
for key in keys:
|
|
value = compact_str(raw.get(key))
|
|
if value:
|
|
return value.removeprefix("models/")
|
|
return ""
|
|
|
|
|
|
def int_limit(value: Any) -> int | None:
|
|
try:
|
|
limit = int(value)
|
|
except (TypeError, ValueError):
|
|
return None
|
|
return limit if limit > 0 else None
|
|
|
|
|
|
def merge_unique(*groups: Iterable[str]) -> tuple[str, ...]:
|
|
out: list[str] = []
|
|
for group in groups:
|
|
for value in group:
|
|
token = compact_str(value)
|
|
if token and token not in out:
|
|
out.append(token)
|
|
return tuple(out)
|
|
|
|
|
|
def deterministic_controls_from_supported_parameters(values: Any) -> tuple[mc.DeterministicControl, ...]:
|
|
return mc.deterministic_controls_from_values(
|
|
values,
|
|
status=mc.ASSERTION_CLAIMED,
|
|
source=mc.SOURCE_PROVIDER_READER,
|
|
confidence=mc.CONFIDENCE_PROVIDER_REPORTED,
|
|
)
|
|
|
|
|
|
def openai_model_items(payload: Mapping[str, Any]) -> tuple[Mapping[str, Any], ...]:
|
|
payload = as_mapping(payload)
|
|
data = payload.get("data")
|
|
if data is None:
|
|
data = payload.get("models")
|
|
return tuple(item for item in as_list(data) if isinstance(item, Mapping))
|
|
|
|
|
|
def normalize_modality_token(value: Any) -> str:
|
|
token = compact_str(value).lower().replace("-", "_").replace(" ", "_")
|
|
aliases = {
|
|
"txt": mc.MODALITY_TEXT,
|
|
"textual": mc.MODALITY_TEXT,
|
|
"image_url": mc.MODALITY_IMAGE,
|
|
"images": mc.MODALITY_IMAGE,
|
|
"img": mc.MODALITY_IMAGE,
|
|
"audio_url": mc.MODALITY_AUDIO,
|
|
"speech": mc.MODALITY_AUDIO,
|
|
"documents": mc.MODALITY_FILE,
|
|
"document": mc.MODALITY_FILE,
|
|
"files": mc.MODALITY_FILE,
|
|
"file_search": mc.MODALITY_FILE,
|
|
"pdfs": mc.MODALITY_PDF,
|
|
"embeddings": mc.MODALITY_EMBEDDING,
|
|
}
|
|
token = aliases.get(token, token)
|
|
return mc.normalize_modality(token)
|
|
|
|
|
|
def modalities_from_value(value: Any) -> tuple[str, ...]:
|
|
if isinstance(value, str):
|
|
parts = value.replace(",", "+").replace("/", "+").split("+")
|
|
else:
|
|
parts = as_list(value)
|
|
out: list[str] = []
|
|
for part in parts:
|
|
token = normalize_modality_token(part)
|
|
if token and token not in out:
|
|
out.append(token)
|
|
return tuple(out)
|
|
|
|
|
|
def split_modality_arrow(value: Any) -> tuple[tuple[str, ...], tuple[str, ...]]:
|
|
text = compact_str(value).lower()
|
|
if not text:
|
|
return (), ()
|
|
for arrow in ("->", "=>", "to"):
|
|
if arrow in text:
|
|
left, right = text.split(arrow, 1)
|
|
return modalities_from_value(left), modalities_from_value(right)
|
|
return modalities_from_value(text), ()
|
|
|
|
|
|
def family_from_modalities(input_modalities: Iterable[str], output_modalities: Iterable[str]) -> str:
|
|
output_set = set(output_modalities)
|
|
if mc.MODALITY_EMBEDDING in output_set:
|
|
return mc.FAMILY_EMBEDDING
|
|
if mc.MODALITY_IMAGE in output_set:
|
|
return mc.FAMILY_IMAGE
|
|
if mc.MODALITY_VIDEO in output_set:
|
|
return mc.FAMILY_VIDEO
|
|
if mc.MODALITY_AUDIO in output_set:
|
|
return mc.FAMILY_AUDIO
|
|
if mc.MODALITY_TEXT in output_set:
|
|
return mc.FAMILY_CHAT
|
|
return mc.FAMILY_UNKNOWN
|
|
|
|
|
|
def primary_task_for_family(family: str, capabilities: Iterable[str] = ()) -> str | None:
|
|
caps = set(capabilities)
|
|
if family == mc.FAMILY_IMAGE and (mc.CAP_IMAGE_EDITING in caps or mc.CAP_INPAINTING in caps):
|
|
return mc.TASK_IMAGE_EDIT
|
|
if family == mc.FAMILY_AUDIO and mc.CAP_TTS in caps:
|
|
return mc.TASK_AUDIO_SYNTHESIZE
|
|
if family == mc.FAMILY_AUDIO and mc.CAP_TRANSCRIPTION in caps:
|
|
return mc.TASK_AUDIO_TRANSCRIBE
|
|
return None
|
|
|
|
|
|
def build_capability(
|
|
*,
|
|
family: str,
|
|
input_modalities: Iterable[str] = (),
|
|
output_modalities: Iterable[str] = (),
|
|
capabilities: Iterable[str] = (),
|
|
limits: Mapping[str, Any] | None = None,
|
|
confidence: str = mc.CONFIDENCE_PROVIDER_REPORTED,
|
|
) -> mc.ModelCapability:
|
|
return mc.ModelCapability.build(
|
|
family=family,
|
|
primary_task=primary_task_for_family(family, capabilities),
|
|
input_modalities=tuple(input_modalities),
|
|
output_modalities=tuple(output_modalities),
|
|
capabilities=tuple(capabilities),
|
|
limits=limits,
|
|
source=mc.SOURCE_PROVIDER_READER,
|
|
confidence=confidence,
|
|
)
|
|
|
|
|
|
def detect_vendor(base_url: Any = "", endpoint_kind: Any = "") -> str:
|
|
kind = compact_str(endpoint_kind).lower().replace("-", "_")
|
|
kind_map = {
|
|
"openai": VENDOR_OPENAI,
|
|
"openrouter": VENDOR_OPENROUTER,
|
|
"google": VENDOR_GOOGLE,
|
|
"gemini": VENDOR_GOOGLE,
|
|
"anthropic": VENDOR_ANTHROPIC,
|
|
"ollama": VENDOR_OLLAMA,
|
|
"lmstudio": VENDOR_LMSTUDIO,
|
|
"lm_studio": VENDOR_LMSTUDIO,
|
|
"llamacpp": VENDOR_LLAMACPP,
|
|
"llama_cpp": VENDOR_LLAMACPP,
|
|
"vllm": VENDOR_VLLM,
|
|
"sglang": VENDOR_SGLANG,
|
|
"huggingface": VENDOR_HUGGINGFACE,
|
|
"hf": VENDOR_HUGGINGFACE,
|
|
}
|
|
if kind in kind_map:
|
|
return kind_map[kind]
|
|
|
|
parsed = urlparse(compact_str(base_url))
|
|
host = (parsed.hostname or "").lower()
|
|
port = parsed.port
|
|
if host.endswith("openrouter.ai"):
|
|
return VENDOR_OPENROUTER
|
|
if host.endswith("openai.com"):
|
|
return VENDOR_OPENAI
|
|
if host.endswith("anthropic.com"):
|
|
return VENDOR_ANTHROPIC
|
|
if host.endswith("googleapis.com"):
|
|
return VENDOR_GOOGLE
|
|
if host.endswith("ollama.com") or port == 11434:
|
|
return VENDOR_OLLAMA
|
|
if port == 1234:
|
|
return VENDOR_LMSTUDIO
|
|
if port == 8000:
|
|
return VENDOR_VLLM
|
|
if port == 30000:
|
|
return VENDOR_SGLANG
|
|
return VENDOR_GENERIC_OPENAI if host else VENDOR_UNKNOWN
|