OpenRouter Users Report Invalid Signature Bug in Sonnet 4.5 Thinking Blocks

Users of OpenRouter are reporting issues with Claude Sonnet 4.5 extended thinking mode, where an "Invalid signature in thinking block" error breaks multi-turn conversations.
The Issue
The first message with reasoning mode works correctly, but subsequent messages fail with the error: "Invalid request: messages.1.content.0: Invalid signature in thinking block."
This appears to be related to how Anthropic changed their message format for thinking blocks, with OpenRouter not yet updated to handle the new format.
Workaround
For developers with backend access, Claude suggests redacting previous thinking blocks before sending messages back to the API:
for msg in messages:
if msg["role"] == "assistant":
for block in msg["content"]:
if block["type"] == "thinking":
block["thinking"] = "redacted"
block["signature"] = "redacted"
Current Status
This is a known issue affecting the OpenRouter frontend directly. Users relying on extended thinking through OpenRouter will need to wait for a platform update or use the Anthropic API directly as an alternative.
The issue affects all providers through OpenRouter, not just specific ones.
📖 Read the full source: r/OpenRouter
👀 See Also
Claude Code v2.1.252 Fixes Bash Errors, Remote Control Stalls
Claude Code v2.1.252 fixes Bash failures on Macs, 'always allow' persistence, Remote Control stalls in Claude Desktop/VS Code, and oversized background notifications.

Benchmark Results: Qwen3.5 Models on Apple Silicon vs AMD GPUs with ROCm vs Vulkan
A developer benchmarked Qwen3.5 models (35B MoE, 27B dense, 122B MoE) across Apple Silicon Macs and AMD GPU workstations, comparing ROCm and Vulkan backends with context-scaling tests. Hardware included M5 Max, M1 Max, and three AMD GPUs with different PCIe configurations.

Claude Skills Have No Business Model for Creators — A Developer's Dilemma
A Reddit post highlights that Claude skill creators can't monetize their work, as Anthropic shipped a great runtime but stopped short of a creator economy layer. Builders are left with open-source projects and no path to sustainability.

Claude Opus 4.7 Released with Hybrid Reasoning and 1M Context Window
Anthropic released Claude Opus 4.7, a hybrid reasoning model with a 1M context window that delivers stronger performance on coding, vision, and complex multi-step tasks. Pricing starts at $5 per million input tokens and $25 per million output tokens.