"""ZAI / GLM provider profile. Z.AI's GLM-4.5-and-later chat models default to thinking-mode ON when the request omits ``thinking``. Hermes' ``reasoning_config = {"enabled": False}`` was previously a silent no-op on this route — the base profile emits nothing, so users who turned thinking off (desktop toggle, ``/reasoning none``, ``reasoning_effort: none``/``false`` in config.yaml) kept burning thinking tokens on every turn. :meth:`ZaiProfile.build_api_kwargs_extras` translates the Hermes reasoning config into the wire shape Z.AI's OpenAI-compat endpoint expects: {"extra_body": {"thinking": {"type": "enabled" | "disabled"}}} When no reasoning preference is set (``reasoning_config is None``) the field is omitted so the server default applies, matching prior behavior. GLM models before 4.5 (e.g. ``glm-4-9b``) don't accept ``thinking`` and are left untouched. """ from __future__ import annotations import re from typing import Any from providers import register_provider from providers.base import ProviderProfile _GLM_VERSION_RE = re.compile(r"^glm-(\d+)(?:\.(\d+))?") def _model_supports_thinking(model: str | None) -> bool: """GLM thinking-capable model families: glm-4.5 and later (4.5, 4.6, 5…).""" m = (model or "").strip().lower() match = _GLM_VERSION_RE.match(m) if not match: return False major = int(match.group(1)) minor = int(match.group(2) or 0) return (major, minor) >= (4, 5) class ZaiProfile(ProviderProfile): """Z.AI / GLM — extra_body.thinking enabled/disabled.""" def build_api_kwargs_extras( self, *, reasoning_config: dict | None = None, model: str | None = None, **context ) -> tuple[dict[str, Any], dict[str, Any]]: extra_body: dict[str, Any] = {} top_level: dict[str, Any] = {} if not _model_supports_thinking(model): return extra_body, top_level # Only emit when the user expressed a preference; omitting the field # keeps the server default (enabled) exactly as before. if isinstance(reasoning_config, dict): enabled = reasoning_config.get("enabled") is not False extra_body["thinking"] = {"type": "enabled" if enabled else "disabled"} return extra_body, top_level zai = ZaiProfile( name="zai", aliases=("glm", "z-ai", "z.ai", "zhipu"), env_vars=("GLM_API_KEY", "ZAI_API_KEY", "Z_AI_API_KEY"), display_name="Z.AI (GLM)", description="Z.AI / GLM — Zhipu AI models", signup_url="https://z.ai/", fallback_models=( "glm-5.2", "glm-5", "glm-4-9b", ), base_url="https://api.z.ai/api/paas/v4", default_aux_model="glm-4.5-flash", ) register_provider(zai)