Learn about Claude Opus 4.7: The latest AI model from Anthropic, just released.

Claude Opus 4.7 is Anthropics most powerful model available to date. It boasts high autonomy and performs particularly well in long-term agentic tasks, cognitive tasks, visual tasks, and memory tasks.

Claude Opus 4.7 is Anthropic's most powerful model to date. It boasts high autonomy and performs particularly well in long-term agentic tasks, cognitive tasks, visual tasks, and memory tasks. The following article summarizes all the new features of Claude Opus 4.7 upon its release.

 

Claude Opus 4.7: The latest AI model from Anthropic has just been released.

Model API Model ID Describe
Claude Opus 4.7 claude-opus-4-7 Anthropic's most powerful model currently available for complex reasoning and agentic programming.


Claude Opus 4.7 supports a 1 million token context window, a maximum output of 128,000 tokens, Adaptive Thinking mode, and the same toolset and platform features as Claude Opus 4.6 .

New features of Claude Opus 4.7

 

Supports high-resolution images.

Claude Opus 4.7 is Anthropic's first Claude model to support high-resolution images. The maximum image resolution has increased to 2576px / 3.75MP (up from the previous limit of 1568px / 1.15MP). This change will improve performance for demanding image processing tasks, and is especially important for computing and workflows that understand screenshots/objects/documents.

In addition, operations such as mapping coordinates to images are now simpler – the model's coordinates are 1:1 scaled with the actual pixels, so no scaling factor needs to be calculated.

High-resolution images use more tokens. If higher image resolution is unnecessary, reduce the image resolution before sending it to Claude to avoid increased token usage.

In addition to resolution, the Claude Opus 4.7 also offers improvements in:

  • Lower-level cognition - pointing, measuring, counting, and similar tasks.
  • Image localization - improves the ability to locate and detect natural image boundary boxes.

New xhigh effort level

The effort parameter allows you to adjust Claude's intelligence based on token cost, trading capabilities for faster speed and lower cost. Start with the new xhigh effort level for programming and agent use cases, using the minimum high effort level for most intelligence-sensitive use cases.

Task budgets (beta)

Claude Opus 4.7 introduces Task Budgets. Task Budgets provide Claude with a rough estimate of the number of tokens needed to target for a complete agent loop, including inference, tool call, tool result, and final output. The model will see a running countdown and use it to prioritize work and efficiently complete tasks when the budget is used up. To use it, set the title to beta task-budgets-2026-03-13 and add the following to your output configuration:

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"], )

 

You may need to experiment with different task budgets for your use case. If the model is given a task budget that is too restrictive for a particular task, it may complete the task less thoroughly or refuse to perform the task at all.

For unlimited automated tasks where quality is more important than speed, a task budget should not be set. Allocate task budgets to workloads where you need to model and limit the scope of the work within a token limit. The minimum value for a task budget is 20,000 tokens.

This isn't a hard limit; it's a hint that the model is aware of. This is different from `max_tokens`, which is a hard limit per request on the number of tokens generated (`max_tokens` isn't passed to the model and the model doesn't know about it), while `task_budget` is an advisory limit across the entire automated loop. Use `task_budget` when you want the model to self-regulate and `max_tokens` as a hard limit per request to restrict usage.

Changes that affect backward compatibility.

These backward compatibility changes only apply to the Messages API. If you are using Claude Managed Agents, there are no API changes that affect backward compatibility with Claude Opus 4.7.

Extended thinking budgets have been removed.

Extended thinking budgets were removed in Claude Opus 4.7. Setting thinking: {"type": "enabled", "budget_tokens": N} will return a 400 error. Adaptive thinking is the only thinking mode enabled and in Anthropic's internal reviews, it consistently performs better than Extended thinking.

# Before (Opus 4.6) thinking = {"type": "enabled", "budget_tokens": 32000} # After (Opus 4.7) thinking = {"type": "adaptive"} output_config = {"effort": "high"}

Adaptive thinking is disabled by default on Claude Opus 4.7. Requests without a thinking field will run without any thinking process. Specify `thinking: {type: "adaptive"}` to enable this mode.

Sampling parameters have been removed.

Starting with Claude Opus 4.7, setting `temperature`, `top_p`, or `top_k` to any value other than the default will return a 400 error. The safest workaround is to omit these parameters entirely from requests and use prompts to guide the model's behavior. If you are using `temperature = 0` to ensure determinism, note that it never guarantees identical output.

Thinking content is ignored by default.

Starting with Claude Opus 4.7, Thinking content is ignored from the response by default. Thinking blocks still appear in the response stream, but their thinking field will be empty unless the caller explicitly selects to enable it. This is a silent change—no errors are thrown—and response latency will be slightly improved. If you need inference output, you can set `display` to `summarized` and select to enable it again with a single line change:

 

thinking = { "type": "adaptive", "display": "summarized", # or "omitted" (default) }

If your product conveys inference to the user, the new default setting will display as a long pause before output begins. Set "display": "summarized" to restore the display progress during inference.

Update the token counting method.

Claude Opus 4.7 uses a new tokenizer, contributing to improved performance across many tasks. This new tokenizer can use approximately 1 to 1.35 times more tokens when processing text compared to previous models (up to ~35% more, depending on content), and /v1/messages/count_tokens will return different token counts for Claude Opus 4.7 compared to Claude Opus 4.6. The token usage efficiency of Claude Opus 4.7 can vary depending on the workload shape. Prompt, task_budget, and effort interventions can help control costs and ensure appropriate token usage. Keep in mind that these controls may come at the cost of model intelligence.

Anthropic recommends updating the max_tokens parameters to allow for more space, including compression triggers. Claude Opus 4.7 provides a 1 million-line context window at the standard API price without an additional charge for long contexts.

Improved capabilities of Claude Opus 4.7

Intellectual work

Claude Opus 4.7 demonstrates significant improvements in the tasks of intellectual workers, especially when the model needs to visually verify its own output:

  • Editing .docx and .pptx files - improved in creating and self-checking tracked changes and slide layout.
  • Graph and image analysis - improved by calling programming tools with image processing libraries (e.g., PIL) for graph and image analysis, including data reproduction at the pixel level.

If existing prompts have mitigation measures in these areas (e.g., "check slide layout carefully before returning"), try removing that structure and re-establishing the baseline.

Memory

Claude Opus 4.7 is better at writing and using memory based on the file system. If an agent maintains a draft table, note file, or structured memory store throughout its turns, that agent will improve its note-taking capabilities and leverage those notes in future tasks. To provide Claude with managed temporary memory without building it itself, use the client-side memory engine.

Behavior change

These aren't changes that disrupt the API, but they might require a quick update.

  • Adhering to precise instructions is more effective, especially at lower effort levels. The model will not automatically generalize an instruction from one item to another and will not infer requirements you haven't specified.
  • The response length is adjusted according to the perceived complexity of the task, rather than defaulting to a fixed length.
  • Fewer tool calls by default, more reasoning. Increased effort will increase tool usage.
  • The tone is more direct and subjective, with less focus on authenticity and fewer emotional expressions compared to the warmer style of Claude Opus 4.6.
  • Provide more frequent progress updates to users throughout longer agent traces. If you've added a frame to force temporary status messages to be displayed, try removing it.
  • Fewer subagents are generated by default. This can be controlled via the prompt.
  • Real-time cybersecurity protection measures: Requests related to prohibited or high-risk topics may result in rejection. For legitimate security jobs, apply for the Cyber ​​Verification Program.

If you are using Claude Code or Agent SDK, Claude's API skills can automatically apply the migrations to Claude Opus 4.7 to your source code.

Related posts
  • How to choose the right Claude model: Haiku, Sonnet, or Opus

    claude has three versions - haiku, sonnet, and opus. each version is designed for different types of work and uses your token limit in a different way.
  • How to organize files on your desktop with Claude

    grant claude's cowork access to your cluttered desktop and leave with peace of mind. it will read your files, identify what they are, and organize them into folders while you work on something else.
  • Learn about Claude Opus 4.6

    the new claude opus 4.6 improves programming skills compared to its predecessor. it plans more carefully, maintains automated tasks for longer periods, can operate reliably in larger codebases, and has better code review and debugging skills to detect its own errors.
Other Artificial intelligence articles
Category

System

Windows XP

Windows Server 2012

Windows 8

Windows 7

Windows 10

Wifi tips

Virus Removal - Spyware

Speed ​​up the computer

Server

Security solution

Mail Server

LAN - WAN

Ghost - Install Win

Fix computer error

Configure Router Switch

Computer wallpaper

Computer security

Mac OS X

Mac OS System software

Mac OS Security

Mac OS Office application

Mac OS Email Management

Mac OS Data - File

Mac hardware

Hardware

USB - Flash Drive

Speaker headset

Printer

PC hardware

Network equipment

Laptop hardware

Computer components

Advice Computer

Game

PC game

Online game

Mobile Game

Pokemon GO

information

Technology story

Technology comments

Quiz technology

New technology

British talent technology

Attack the network

Artificial intelligence

Technology

Smart watches

Raspberry Pi

Linux

Camera

Basic knowledge

Banking services

SEO tips

Science

Strange story

Space Science

Scientific invention

Science Story

Science photo

Science and technology

Medicine

Health Care

Fun science

Environment

Discover science

Discover nature

Archeology

Life

Travel Experience

Tips

Raise up child

Make up

Life skills

Home Care

Entertainment

DIY Handmade

Cuisine

Christmas

Application

Web Email

Website - Blog

Web browser

Support Download - Upload

Software conversion

Social Network

Simulator software

Online payment

Office information

Music Software

Map and Positioning

Installation - Uninstall

Graphic design

Free - Discount

Email reader

Edit video

Edit photo

Compress and Decompress

Chat, Text, Call

Archive - Share

Electric

Water heater

Washing machine

Television

Machine tool

Fridge

Fans

Air conditioning

Program

Unix and Linux

SQL Server

SQL

Python

Programming C

PHP

NodeJS

MongoDB

jQuery

JavaScript

HTTP

HTML

Git

Database

Data structure and algorithm

CSS and CSS3

C ++

C #

AngularJS

Mobile

Wallpapers and Ringtones

Tricks application

Take and process photos

Storage - Sync

Security and Virus Removal

Personalized

Online Social Network

Map

Manage and edit Video

Data

Chat - Call - Text

Browser and Add-on

Basic setup