Claude Opus 4.7 adds high-resolution image support, task budgets, and removes extended thinking

Claude Opus 4.7 is Anthropic's latest generally available model, designed for complex reasoning and agentic coding with support for a 1M token context window and 128k max output tokens.
New features
The model adds high-resolution image support with a maximum resolution of 2576px/3.75MP, up from the previous 1568px/1.15MP limit. This should improve performance on vision-heavy workloads, particularly for computer use and document understanding workflows. Coordinates now map 1:1 with actual pixels, eliminating scale-factor calculations. High-res images consume more tokens, so downsampling is recommended when additional fidelity isn't needed.
Claude Opus 4.7 also introduces a new xhigh effort level for coding and agentic use cases, with high recommended as the minimum for intelligence-sensitive tasks.
Task budgets (beta)
The model adds task budgets, which give Claude an estimate of how many tokens to target for a full agentic loop including thinking, tool calls, and outputs. The model sees a running countdown and uses it to prioritize work. Minimum task budget is 20k tokens, and it's distinct from max_tokens which remains a hard per-request cap.
response = client.beta.messages.create(
model="claude-opus-4-7",
max_tokens=128000,
output_config={
"effort": "high",
"task_budget": {
"type": "tokens",
"total": 128000
}
},
messages=[{"role": "user", "content": "Review the codebase and propose a refactor plan."}],
betas=["task-budgets-2026-03-13"]
)Task budgets are advisory, not hard caps. If set too low, the model may complete tasks less thoroughly or refuse them entirely. For open-ended agentic tasks where quality matters more than speed, don't set a task budget.
Breaking changes
Extended thinking budgets are removed in Claude Opus 4.7. Setting thinking: {"type": "enabled", "budget_tokens": N} will return a 400 error. Adaptive thinking is now the only thinking-on mode, which in internal evaluations reliably outperforms extended thinking.
📖 Read the full source: HN AI Agents
👀 See Also

AI Subscription Pricing Crash: Why Your Enterprise Bill Is About to 10x
AI labs like OpenAI, Anthropic, and Microsoft are losing money on every subscription seat. Agentic workloads have broken the flat-fee model — GitHub Copilot moves to usage-based billing June 1, 2026. Enterprises that built on subsidized pricing face a correction.

SDNY Ruling Denies Attorney-Client Privilege for AI Chat Communications
Judge Rakoff ruled in U.S. v. Heppner that communications with AI tools like ChatGPT do not qualify for attorney-client privilege, requiring disclosure of all AI-generated legal work. The court found AI lacks the human confidentiality required for privilege protection.

Wikipedia Bans AI-Generated Content, Allows Limited AI Use with Human Review
Wikipedia has officially banned its 260,000 editors from using AI like ChatGPT to write articles, citing accuracy and reliability concerns. Editors can still use AI for translation and copy editing with human approval.

Claude Code v2.1.174: Wheel Scroll Acceleration Toggle, /model Fixes, GovCloud Support, and VSCode Usage Attribution
Claude Code v2.1.174 adds a wheelScrollAccelerationEnabled setting to disable scroll acceleration in fullscreen mode, fixes /model picker hiding Opus/Sonnet rows, resolves Bedrock GovCloud 400 errors, adds VSCode usage attribution breakdowns, and fixes background session env inheritance.