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

Granite 4.1: IBM's 8B Dense Model Matches 32B MoE in Benchmarks
IBM's Granite 4.1 8B dense model matches or beats the previous 32B MoE model on ArenaHard, BFCL V3, GSM8K, and more, thanks to improved training data quality.

Claude API Usage Data Shows Impact of New Limits on Max Plan Users
A Claude Max 20x user reports API-equivalent daily usage dropping from ~$210/day to ~$52/day after new limits were implemented, requiring significant workflow changes including using Sonnet and Codex.

Claude Code v2.1.83 adds managed settings fragments, transcript search, and security improvements
Claude Code v2.1.83 introduces a managed-settings.d/ directory for team policy fragments, transcript search with / and n/N navigation, and CLAUDE_CODE_SUBPROCESS_ENV_SCRUB=1 to strip credentials from subprocess environments. The release also includes CwdChanged/FileChanged hooks, sandbox.failIfUnavailable setting, and fixes for macOS exit hangs, UI freezes, and memory leaks.

Anthropic Uses Google Forms for Claude Feedback
Anthropic, the company behind Claude, uses a Google Form from 2008 to collect design feedback instead of building a custom tool—highlighting a pragmatic build vs. buy philosophy.