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

Wikipedia's AI Policy: LLMs Banned for Article Creation, Exceptions for Copyediting and Translation
Wikipedia prohibits using LLMs to generate or rewrite articles, with narrow exceptions for basic copyediting and translation. Violations can lead to speedy deletion (G15) and removal of AI-generated comments from talk pages.

Simple Self-Distillation Method Improves LLM Code Generation
Researchers show that fine-tuning LLMs on their own sampled outputs (simple self-distillation) improves code generation performance, boosting Qwen3-30B-Instruct from 42.4% to 55.3% pass@1 on LiveCodeBench v6.

Chrome's Gemini Nano AI Model Consumes 4GB of Disk Space
Google Chrome automatically downloads a 4GB weights.bin file for the Gemini Nano on-device AI model, which may bloat storage without clear user notification. Disabling the On-Device AI toggle in settings removes the file and prevents re-download.

Anthropic's Natural Language Autoencoders Turn Claude's Activations into Readable English — Here's How
Anthropic releases Natural Language Autoencoders (NLAs) that convert Claude's internal activations into plain-text explanations, revealing model reasoning about rhymes, safety test awareness, and cheating detection.