mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-09 08:21:50 +00:00
The standalone Kimi/Moonshot profile (api.moonshot.ai/v1) sent both extra_body.thinking AND a top-level reasoning_effort. With no reasoning config it even defaulted to thinking:enabled + reasoning_effort:medium, pairing them on every default call. Moonshot treats these as mutually exclusive (cannot specify both 'thinking' and 'reasoning_effort'). Align with the kimi-k2 handling already shipped for the opencode-go relay: send effort when a recognized low|medium|high is requested, otherwise fall back to the extra_body.thinking toggle. Disabled sends thinking:disabled only. Never both. Reported by Cars29 (NOUS Discord). DeepSeek was deliberately left untouched: its native endpoint accepts both (verified by the live guardrail in test_deepseek_v4_thinking_live.py), so the report's DeepSeek claim does not hold there. Tests: tests/plugins/model_providers/test_kimi_profile.py pins the xor contract across all config shapes.
80 lines
2.9 KiB
Python
80 lines
2.9 KiB
Python
"""Kimi / Moonshot provider profiles.
|
|
|
|
Kimi has dual endpoints:
|
|
- sk-kimi-* keys → api.kimi.com/coding (Anthropic Messages API)
|
|
- legacy keys → api.moonshot.ai/v1 (OpenAI chat completions)
|
|
|
|
This module covers the chat_completions path (/v1 endpoint).
|
|
"""
|
|
|
|
from typing import Any
|
|
|
|
from providers import register_provider
|
|
from providers.base import OMIT_TEMPERATURE, ProviderProfile
|
|
|
|
|
|
class KimiProfile(ProviderProfile):
|
|
"""Kimi/Moonshot — temperature omitted, thinking xor reasoning_effort."""
|
|
|
|
def build_api_kwargs_extras(
|
|
self, *, reasoning_config: dict | None = None, **context
|
|
) -> tuple[dict[str, Any], dict[str, Any]]:
|
|
"""Kimi reasoning controls.
|
|
|
|
Moonshot's wire shape treats ``extra_body.thinking`` (a binary toggle)
|
|
and a top-level ``reasoning_effort`` as mutually exclusive — sending
|
|
both is at best redundant and risks "cannot specify both 'thinking' and
|
|
'reasoning_effort'" (HTTP 400). This mirrors the kimi-k2 handling on the
|
|
opencode-go relay: send effort when one is requested, otherwise fall
|
|
back to ``extra_body.thinking`` — never both.
|
|
"""
|
|
extra_body = {}
|
|
top_level = {}
|
|
|
|
if not reasoning_config or not isinstance(reasoning_config, dict):
|
|
# No config → thinking enabled, let the server pick the depth.
|
|
# (Previously also sent reasoning_effort="medium", which paired
|
|
# thinking + effort on every default call.)
|
|
extra_body["thinking"] = {"type": "enabled"}
|
|
return extra_body, top_level
|
|
|
|
enabled = reasoning_config.get("enabled", True)
|
|
if enabled is False:
|
|
extra_body["thinking"] = {"type": "disabled"}
|
|
return extra_body, top_level
|
|
|
|
# Enabled: prefer an explicit effort; only fall back to extra_body
|
|
# thinking when no recognized effort is requested.
|
|
effort = (reasoning_config.get("effort") or "").strip().lower()
|
|
if effort in {"low", "medium", "high"}:
|
|
top_level["reasoning_effort"] = effort
|
|
else:
|
|
extra_body["thinking"] = {"type": "enabled"}
|
|
|
|
return extra_body, top_level
|
|
|
|
|
|
kimi = KimiProfile(
|
|
name="kimi-coding",
|
|
aliases=("kimi", "moonshot", "kimi-for-coding"),
|
|
env_vars=("KIMI_API_KEY", "KIMI_CODING_API_KEY"),
|
|
base_url="https://api.moonshot.ai/v1",
|
|
fixed_temperature=OMIT_TEMPERATURE,
|
|
default_max_tokens=32000,
|
|
default_headers={"User-Agent": "hermes-agent/1.0"},
|
|
default_aux_model="kimi-k2-turbo-preview",
|
|
)
|
|
|
|
kimi_cn = KimiProfile(
|
|
name="kimi-coding-cn",
|
|
aliases=("kimi-cn", "moonshot-cn"),
|
|
env_vars=("KIMI_CN_API_KEY",),
|
|
base_url="https://api.moonshot.cn/v1",
|
|
fixed_temperature=OMIT_TEMPERATURE,
|
|
default_max_tokens=32000,
|
|
default_headers={"User-Agent": "hermes-agent/1.0"},
|
|
default_aux_model="kimi-k2-turbo-preview",
|
|
)
|
|
|
|
register_provider(kimi)
|
|
register_provider(kimi_cn)
|