Spaces:
Running
Running
File size: 8,259 Bytes
0157ac7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | """Native Anthropic Messages request body construction (JSON-ready dicts).
Provider adapters supply policy via parameters (defaults, OpenRouter post-steps).
"""
from __future__ import annotations
from collections.abc import Sequence
from typing import Any
from pydantic import BaseModel
_REQUEST_FIELDS = (
"model",
"messages",
"system",
"max_tokens",
"stop_sequences",
"stream",
"temperature",
"top_p",
"top_k",
"metadata",
"tools",
"tool_choice",
"thinking",
"context_management",
"output_config",
"mcp_servers",
"extra_body",
)
# Keys that would override routed canonical request fields if merged from ``extra_body``.
_OPENROUTER_EXTRA_BODY_FORBIDDEN_KEYS = frozenset(
{
"model",
"messages",
"system",
"tools",
"tool_choice",
"stream",
"max_tokens",
"temperature",
"top_p",
"top_k",
"metadata",
"stop_sequences",
"context_management",
"output_config",
"mcp_servers",
}
)
class OpenRouterExtraBodyError(ValueError):
"""``extra_body`` contained reserved keys that would override canonical fields."""
def validate_openrouter_extra_body(extra: Any) -> None:
"""Reject ``extra_body`` keys that must not override routed request fields."""
if not isinstance(extra, dict) or not extra:
return
bad = _OPENROUTER_EXTRA_BODY_FORBIDDEN_KEYS & extra.keys()
if bad:
raise OpenRouterExtraBodyError(
f"extra_body must not override canonical request fields: {sorted(bad)}"
)
_INTERNAL_FIELDS = {
"thinking",
"extra_body",
}
def _serialize_value(value: Any) -> Any:
"""Convert Pydantic models and lightweight objects into JSON-ready values."""
if isinstance(value, BaseModel):
return value.model_dump(exclude_none=True)
if isinstance(value, dict):
return {
key: _serialize_value(item)
for key, item in value.items()
if item is not None
}
if isinstance(value, Sequence) and not isinstance(value, str | bytes | bytearray):
return [_serialize_value(item) for item in value]
if value is None or isinstance(value, str | int | float | bool):
return value
if hasattr(value, "__dict__"):
return {
key: _serialize_value(item)
for key, item in vars(value).items()
if not key.startswith("_") and item is not None
}
return value
def _dump_request_fields(request_data: Any) -> dict[str, Any]:
"""Extract the public request fields (OpenRouter-style explicit field list)."""
if isinstance(request_data, BaseModel):
return request_data.model_dump(exclude_none=True)
dumped: dict[str, Any] = {}
for field in _REQUEST_FIELDS:
value = getattr(request_data, field, None)
if value is not None:
dumped[field] = _serialize_value(value)
return dumped
def dump_raw_messages_request(request_data: Any) -> dict[str, Any]:
"""Public JSON-ready dict of Anthropic public request fields (for native adapters)."""
return _dump_request_fields(request_data)
def sanitize_native_messages_thinking_policy(
messages: Any, *, thinking_enabled: bool
) -> Any:
"""Filter assistant message thinking blocks for upstream native Anthropic JSON.
When ``thinking_enabled`` is false, remove ``thinking`` and ``redacted_thinking``
history so disabled policy is not undermined by prior turns.
When true, keep ``redacted_thinking`` and signed ``thinking``; remove only
unsigned plain ``thinking`` blocks (not replayable).
"""
if not isinstance(messages, list):
return messages
sanitized_messages: list[Any] = []
for message in messages:
if not isinstance(message, dict):
sanitized_messages.append(message)
continue
if message.get("role") != "assistant":
sanitized_messages.append(message)
continue
content = message.get("content")
if not isinstance(content, list):
sanitized_messages.append(message)
continue
if not thinking_enabled:
sanitized_content = [
block
for block in content
if not (
isinstance(block, dict)
and block.get("type") in ("thinking", "redacted_thinking")
)
]
else:
sanitized_content = [
block
for block in content
if not (
isinstance(block, dict)
and block.get("type") == "thinking"
and not isinstance(block.get("signature"), str)
)
]
sanitized_message = dict(message)
sanitized_message["content"] = sanitized_content or ""
sanitized_messages.append(sanitized_message)
return sanitized_messages
def _normalize_system_prompt_for_openrouter(system: Any) -> Any:
"""Flatten Claude SDK system blocks for OpenRouter's native endpoint."""
if not isinstance(system, list):
return system
text_parts: list[str] = []
for block in system:
if not isinstance(block, dict):
continue
if block.get("type") == "text" and isinstance(block.get("text"), str):
text_parts.append(block["text"])
return "\n\n".join(text_parts).strip() if text_parts else system
def _apply_openrouter_reasoning_policy(body: dict[str, Any], thinking_cfg: Any) -> None:
"""Map Anthropic thinking controls onto OpenRouter reasoning controls."""
reasoning = body.setdefault("reasoning", {"enabled": True})
if not isinstance(reasoning, dict):
return
reasoning.setdefault("enabled", True)
if not isinstance(thinking_cfg, dict):
return
budget_tokens = thinking_cfg.get("budget_tokens")
if isinstance(budget_tokens, int):
reasoning.setdefault("max_tokens", budget_tokens)
def build_base_native_anthropic_request_body(
request: Any,
*,
default_max_tokens: int,
thinking_enabled: bool,
) -> dict[str, Any]:
"""Serialize a Pydantic messages request to a generic native Anthropic body."""
body = request.model_dump(exclude_none=True)
body.pop("extra_body", None)
if "thinking" in body:
thinking_cfg = body.pop("thinking")
if thinking_enabled and isinstance(thinking_cfg, dict):
thinking_payload: dict[str, Any] = {"type": "enabled"}
budget_tokens = thinking_cfg.get("budget_tokens")
if isinstance(budget_tokens, int):
thinking_payload["budget_tokens"] = budget_tokens
body["thinking"] = thinking_payload
if "max_tokens" not in body:
body["max_tokens"] = default_max_tokens
if "messages" in body:
body["messages"] = sanitize_native_messages_thinking_policy(
body["messages"],
thinking_enabled=thinking_enabled,
)
return body
def build_openrouter_native_request_body(
request_data: Any,
*,
thinking_enabled: bool,
default_max_tokens: int,
) -> dict[str, Any]:
"""Build an Anthropic-format request body for OpenRouter (policy hooks built-in)."""
dumped_request = _dump_request_fields(request_data)
request_extra = dumped_request.pop("extra_body", None)
thinking_cfg = dumped_request.get("thinking")
body: dict[str, Any] = {
key: value
for key, value in dumped_request.items()
if key not in _INTERNAL_FIELDS
}
if isinstance(request_extra, dict):
validate_openrouter_extra_body(request_extra)
body.update(request_extra)
body["messages"] = sanitize_native_messages_thinking_policy(
body.get("messages"),
thinking_enabled=thinking_enabled,
)
if "system" in body:
body["system"] = _normalize_system_prompt_for_openrouter(body["system"])
body["stream"] = True
if body.get("max_tokens") is None:
body["max_tokens"] = default_max_tokens
if thinking_enabled:
_apply_openrouter_reasoning_policy(body, thinking_cfg)
return body
|