Back to Insights
    AI Costs
    8 min

    Claude Opus 4.7: What the 35% Cost Increase Means for Operators

    By Andrew Mudd·

    Anthropic said same price. The tokenizer changed. Same text now costs 35% more in tokens. Here's what Claude Opus 4.7 actually means for operators running AI at scale.

    Claude Opus 4.7: What the 35% Cost Increase Means for Operators

    Anthropic dropped Claude Opus 4.7 today and announced it at the same price as Opus 4.6. That statement is technically true. The price per token did not change. What changed is the tokenizer. The new tokenizer produces up to 35% more tokens for the exact same text. If you run 1 million tokens through Opus 4.6, that same content runs 1.35 million tokens through Opus 4.7. At $0.015 per 1,000 tokens, that takes your bill from $15 to $20.25 for the same workflow, before you get a single capability improvement. Most of the coverage today will miss this entirely. This is the operator breakdown.

    Full operator breakdown: 4 real changes and the cost thing to check before you migrate


    What are the four real changes in Claude Opus 4.7?

    Claude Opus 4.7 ships four meaningful updates: a vision resolution increase, a new xhigh effort level, task budgets for agentic loops, and better file memory for persistent agents. Two of these matter for most operators. Two matter only if you're doing specific work.

    Change 1: Vision resolution

    The image resolution cap jumped to 3.75 megapixels, with a maximum of 2,576 pixels on the long edge. That is a significant increase from Opus 4.6.

    This is not just about sharper images. The practical improvement is in what the model can extract from dense visual content. Counting items accurately in a photo. Locating specific elements precisely. Reading fine print on contracts and invoices. If you are passing documents, diagrams, annotated screenshots, or data tables to the model as images, this upgrade is real and measurable.

    If you are not doing vision work, move on.

    Change 2: xhigh effort level

    Before Opus 4.7, the API effort levels ran low, medium, and high. High was the ceiling. Now there is xhigh above it.

    Setting xhigh tells the model to spend more tokens on internal reasoning before producing output. Anthropic's testing showed a double-digit percentage improvement in tool call accuracy on agentic workflows at xhigh versus high. That is a meaningful number.

    Where to use it: complex code generation, multi-step agent workflows, legal and financial document analysis, any task where a wrong output creates downstream problems that are expensive to fix.

    Where not to use it: email summarization, short-form drafts, classification tasks, anything high-volume and simple. xhigh costs more and runs slower. Match the effort level to the job.

    Change 3: Task budgets

    This one matters if you run agents in production.

    The problem with agentic loops has always been unpredictable token usage. A workflow you thought would run 50,000 tokens sometimes runs 200,000. You either hard-cap it and risk getting a broken half-finished output, or you leave it open and occasionally absorb a surprise billing event.

    Task budgets give the model a soft token target for the entire run. The model tracks its progress against that budget and, when approaching the limit, wraps up intelligently. It does not just stop. It prioritizes what remains, skips low-value steps, and closes out the workflow in a coherent state.

    This is a one-line parameter addition to your API call. For any agentic workflow in production, implement task budgets now, even if you are not migrating to 4.7 yet. The cost predictability alone is worth it.

    Change 4: Better file memory for persistent agents

    Agents that write and read files across turns are significantly more accurate in Opus 4.7. Updates are more precise. Recall is more reliable. Drift across long sessions is reduced.

    If you are building or running persistent-memory agents, this is the release to run them on. If you are not there yet, note it for when you are.


    How does the new effort level xhigh change what operators can do?

    xhigh effort is best understood as a quality ceiling for tasks where the cost of being wrong exceeds the cost of spending more tokens. It is not a general-purpose upgrade. It is a tool for specific bottlenecks.

    Here is the practical test: go through your current AI workflows and find every place you have a human review step. Not because you want a human there, but because the model was not reliable enough to trust on its own. Those are your xhigh candidates.

    Run those tasks through Opus 4.7 at xhigh. If the model passes them without human intervention, you just removed a bottleneck. That is where you get the real ROI from this release. Not from migrating everything over, but from identifying the three or four specific places where higher reliability changes your operational math.

    Benchmarks for context: Opus 4.7 improved 13% over Opus 4.6 on Anthropic's internal 93-task coding benchmark. On GDPval-AA, the knowledge work benchmark covering finance and legal tasks, Opus 4.7 beats GPT-5.4 and Gemini 3.1 Pro. The capability improvement is real. The question is whether it moves the needle on your specific bottlenecks.

    One honest caveat: Anthropic confirmed that Opus 4.7 still trails Mythos Preview, their research-only restricted model. Opus 4.7 is the best model you can actually access. Mythos is still locked. That is the real landscape.


    What is a task budget and why does it matter for agentic workflows?

    A task budget is a soft token ceiling you set for an agentic workflow, which tells the model to wrap up gracefully when it is approaching the limit rather than stopping abruptly or running indefinitely. The model tracks its usage against the budget and prioritizes intelligently as it gets close.

    Before task budgets, production agentic workflows had two bad options. Hard cap at a token limit and risk a broken output. Leave it open and absorb whatever the model decides to spend.

    Task budgets give you a third option: tell the model roughly what you want to spend, let it manage that constraint intelligently, and get a coherent output even if the model had to compress the final steps.

    The implementation is minimal. In your API call, you add a task budget parameter with your target token count. The model does the rest.

    For operators running AI in production, this changes cost forecasting. You can say this workflow costs approximately X tokens. Every time. Budget accordingly. The model will work within that constraint without requiring you to monitor individual runs.

    This is worth implementing immediately on any production agentic workflow, regardless of whether you migrate to Opus 4.7.


    Why does the "same price" announcement hide a 35% cost increase?

    Anthropic's pricing announcement is accurate in one specific sense and misleading in practice. The price per token did not change. The number of tokens your content produces did change, by up to 35%.

    A tokenizer is the component that converts text into the discrete chunks the model processes. Different tokenizers split text differently. The new tokenizer in Opus 4.7 produces more tokens from the same text than the tokenizer in Opus 4.6.

    The math is direct:

    • 1 million input tokens at $0.015/1K through Opus 4.6 = $15.00
    • Same content through Opus 4.7 tokenizer at the same rate = 1.35 million tokens = $20.25
    • That is a 35% cost increase on the same workflow with no change in the rate card

    For low-volume, complex, high-stakes tasks, this math probably does not change your decision. The capability improvement likely earns the extra cost on work that requires judgment, precision, or agentic reliability.

    For high-volume simple work, the calculation is different. Document summarization at scale. Long classification pipelines. Batch processing of short-form content. On workflows like these, the tokenizer change could meaningfully increase your monthly API spend without delivering a proportional capability improvement.

    How to check before you migrate anything at scale: Pull a representative sample of your real production prompts. Run them through Opus 4.6 and Opus 4.7 with token counting enabled. Calculate the delta. Ten minutes of work that will tell you exactly where you stand before you flip the switch across your entire stack.


    How should operators decide whether to migrate to Claude Opus 4.7?

    The answer depends on what your workflows are doing, not on whether the new model is better in absolute terms. Opus 4.7 is better. The question is whether that improvement matters for your specific situation and whether the tokenizer cost delta is justified.

    Here is the Operator Playbook for Opus 4.7. Four moves, in order.

    Move 1: Find your human checkpoints.

    Look at every AI workflow where you currently have a human reviewing output. List the specific tasks. Those are your test cases for Opus 4.7 at xhigh. If the model passes them without human review, you have identified where this release actually changes your operations.

    Move 2: Add task budgets to production agentic workflows.

    Do this regardless of whether you migrate. The cost predictability improvement applies to whatever model you are running. It is a one-line change with real operational value.

    Move 3: Run the token comparison before migrating anything at scale.

    Take a representative sample of your real prompts. Run them through both models with token counting enabled. Look at the delta. If the increase is minimal, migrate freely. If it is material, scope which workflows justify the upgrade and which should stay on Opus 4.6 or Sonnet.

    Move 4: Match the model to the job.

    Use Opus 4.7 at xhigh for: complex agentic workflows, serious coding tasks, legal and financial document analysis, vision tasks with dense detailed images, any task where a wrong output creates expensive downstream problems.

    Use Sonnet or Opus 4.6 for: high-volume summarization, short-form drafting, classification tasks, anything where speed and cost matter more than absolute quality at the margin. Sonnet handles most of that work well and costs significantly less per token, with a more favorable tokenizer ratio.

    The operators who get the most from a release like this are not the ones who migrate everything. They are the ones who identify the specific tasks where the capability upgrade changes the math and upgrade exactly those.


    For more on what the underlying stack actually costs versus what you pay when you hire someone to run it, see AI agency pricing and what operators actually pay. For how GPT-6 fits into this model landscape when it drops, see the GPT-6 operator evaluation framework.


    Frequently Asked Questions

    Is Claude Opus 4.7 more expensive than Opus 4.6? The price per token is the same. But the new tokenizer produces up to 35% more tokens from the same text, which increases total cost by up to 35% on identical workflows. The announcement of "same price" is accurate on a per-token basis and misleading in practice.

    How does the xhigh effort level work in Claude Opus 4.7? Setting xhigh on an API call tells the model to spend more tokens on internal reasoning before producing output. Anthropic saw a double-digit improvement in tool call accuracy on agentic workflows at xhigh versus high. Use it for complex tasks where accuracy matters more than speed. Do not use it on high-volume simple work.

    What is a task budget in Claude Opus 4.7? A task budget is a soft token ceiling you set for an agentic workflow. The model tracks its usage against the budget and wraps up intelligently when approaching the limit, rather than stopping abruptly or running over. It makes production agentic workflows cost-predictable.

    Should I migrate to Claude Opus 4.7 immediately? Run the token comparison first. Pull a sample of your real production prompts, run them through both models with token counting enabled, and check the delta. For complex, high-stakes tasks, migrate. For high-volume simple work, check the math before switching.


    Andrew Mudd runs Mudd Ventures, AI implementation consulting for business owners and operators. He has been running AI inside real business operations since February 2023.

    Ready to see what AI can actually do for your business?

    Book Your Free AI Clarity Call