Opus 4.7 to 4.6 Inflation is ~45%
217 points
2 hours ago
| 44 comments
| tokens.billchambers.me
| HN
dakiol
1 hour ago
[-]
We dropped Claude. It's pretty clear this is a race to the bottom, and we don't want a hard dependency on another multi-billion dollar company just to write software

We'll be keeping an eye on open models (of which we already make good use of). I think that's the way forward. Actually it would be great if everybody would put more focus on open models, perhaps we can come up with something like the "linux/postgres/git/http/etc" of the LLMs: something we all can benefit from while it not being monopolized by a single billionarie company. Wouldn't it be nice if we don't need to pay for tokens? Paying for infra (servers, electricity) is already expensive enough

reply
ahartmetz
1 hour ago
[-]
>we don't want a hard dependency on another multi-billion dollar company just to write software

One of two main reasons why I'm wary of LLMs. The other is fear of skill atrophy. These two problems compound. Skill atrophy is less bad if the replacement for the previous skill does not depend on a potentially less-than-friendly party.

reply
post-it
45 minutes ago
[-]
I was worried about skill atrophy. I recently started a new job, and from day 1 I've been using Claude. 90+% of the code I've written has been with Claude. One of the earlier tickets I was given was to update the documentation for one of our pipelines. I used Claude entirely, starting with having it generate a very long and thorough document, then opening up new contexts and getting it to fact check until it stopped finding issues, and then having it cut out anything that was granular/one query away. And then I read what it had produced.

It was an experiment to see if I could enter a mature codebase I had zero knowledge of, look at it entirely through an AI, and come to understand it.

And it worked! Even though I've only worked on the codebase through Claude, whenever I pick up a ticket nowadays I know what file I'll be editing and how it relates to the rest of the code. If anything, I have a significantly better understanding of the codebase than I would without AI at this point in my onboarding.

reply
estetlinus
24 minutes ago
[-]
Yeah, +1. I will never be working on unsolved problems anyhow. Skill atrophy is not happening if you stay curious and responsible.
reply
stringfood
3 minutes ago
[-]
I have never learned so quickly in my entire life than to post a forum thread in its entirety into a extended think LLM and then be allowed to ask free form questions for 2 hours straight if I want to. Having my questions answered NOW is so important for me to learn. Back in the day by the time I found the answer online I forgot the question
reply
SpicyLemonZest
18 minutes ago
[-]
Are you sure you would know if it didn't work? I use Claude extensively myself, so I'm not saying this from a "hater" angle, but I had 2 people last week who believe themselves to be in your shoes send me pull requests which made absolutely no sense in the context of the codebase.
reply
therealdrag0
11 minutes ago
[-]
That’s always been the case, AI or not.
reply
ljm
48 minutes ago
[-]
Not so much atrophy as apathy.

I've worked with people who will look at code they don't understand, say "llm says this", and express zero intention of learning something. Might even push back. Be proud of their ignorance.

It's like, why even review that PR in the first place if you don't even know what you're working with?

reply
psygn89
31 minutes ago
[-]
I cringed when I saw a dev literally copy and paste an AI's response to a concern. The concern was one that had layers and implications to it, but instead of getting an answer as to why it was done a certain way and to allay any potential issues, that dev got a two paragraph lecture on how something worked on the surface of it, wrapped in em dashes and joviality.

A good dev would've read deeper into the concern and maybe noticed potential flaws, and if he had his own doubts about what the concern was about, would have asked for more clarification. Not just feed a concern into AI and fling it back. Like please, in this day and age of AI, have the benefit of the doubt that someone with a concern would have checked with AI himself if he had any doubts of his own concern...

reply
oremj
11 minutes ago
[-]
Is this the same subset of people who copy/paste code directly from stack overflow without understanding ? I’m not sure this is a new problem.
reply
trinsic2
1 minute ago
[-]
Hey. I resemble that remark sometimes!! quit being a hater (sarcasm) :P
reply
kilroy123
28 minutes ago
[-]
We've had such developers around, long before LLMs.
reply
ohazi
11 minutes ago
[-]
They're so much louder now, though.
reply
monkpit
23 minutes ago
[-]
If I wanted to know what the LLM says, I would have asked it myself, thanks…
reply
RexM
15 minutes ago
[-]
It’s a lot like someone bragging that they’re bad at math tossing around equations.
reply
redanddead
20 minutes ago
[-]
What is it in the broader culture that's causing this?
reply
mattgreenrocks
14 minutes ago
[-]
These people have always existed. Hell, they are here, too. Now they have a new thing to delegate responsibility to.

And no, I don't understand them at all. Taking responsibility for something, improving it, and stewarding it into production is a fantastic feeling, and much better than reading the comment section. :)

reply
groundzeros2015
5 minutes ago
[-]
People who got into the job who don’t really like programming
reply
tossandthrow
1 hour ago
[-]
You can argu that you will have skill atrophy by not using LLMs.

We have gone multi cloud disaster recovery on our infrastructure. Something I would not have done yet, had we not had LLMs.

I am learning at an incredible rate with LLMs.

reply
mgambati
59 minutes ago
[-]
I kind feel the same. I’m learning things and doing things in areas that would just skip due to lack of time or fear.

But I’m so much more detached of the code, I don’t feel that ‘deep neural connection’ from actual spending days in locked in a refactor or debugging a really complex issue.

I don’t know how a feel about it.

reply
Fire-Dragon-DoL
53 minutes ago
[-]
I strongly agree on the refactor, but for debugging I have another perspective: I think debugging is changing for the better, so it looks different.

Sure, you don't know the code by heart, but people debugging code translated to assembly already do that.

The big difference is being able to unleash scripts that invalidate enormous amount of hypothesis very fast and that can analyze the data.

Used to do that by hand it took hours, so it would be a last resort approach. Now that's very cheap, so validating many hypothesis is way cheaper!

I feel like my "debugging ability" in terms of value delivered has gone way up. For skill, it's changing. I cannot tell, but the value i am delivering for debugging sessions has gone way up

reply
afzalive
54 minutes ago
[-]
As someone who's switched from mobile to web dev professionally for the last 6 months now. If you care about code quality, you'll develop that neural connection after some time.

But if you don't and there's no PR process (side projects), the motivation to form that connection is quite low.

reply
ori_b
55 minutes ago
[-]
Yes, you certainly can argue that, but you'd be wrong. The primary selling point of LLMs is that they solve the problem of needing skill to get things done.
reply
andy_ppp
40 minutes ago
[-]
I see it completely the opposite way, you use an LLM and correct all its mistakes and it allows you to deliver a rough solution very quickly and then refine it in combination with the AI but it still gets completely lost and stuck on basic things. It’s a very useful companion that you can’t trust, but it’s made me 4-5x more productive and certainly less frustrated by the legacy codebase I work on.
reply
tossandthrow
52 minutes ago
[-]
That is not the entire selling point - so you are very wrong.

You very much decide how you employ LLMs.

Nobody are keeping a gun to your head to use them. In a certain way.

Sonif you use them in a way that increase you inherent risk, then you are incredibly wrong.

reply
ori_b
45 minutes ago
[-]
I suggest you read the sales pitches that these products have been making. Again, when I say that this is the selling point, I mean it: This is why management is buying them.
reply
SpicyLemonZest
30 minutes ago
[-]
I've read the sales pitches, and they're not about replacing the need for skill. The Claude Design announcement from yesterday (https://www.anthropic.com/news/claude-design-anthropic-labs) is pretty typical in my experience. The pitch is that this is good for designers, because it will allow them to explore a much broader range of ideas and collaborate on them with counterparties more easily. The tool will give you cool little sliders to set the city size and arc width, but it doesn't explain why you would want to adjust these parameters or how to determine the correct values; that's your job.

I understand why a designer might read this post and not be happy about it. If you don't think your management values or appreciates design skill, you'd worry they're going to glaze over the bullet points about design productivity, and jump straight to the one where PMs and marketers can build prototypes and ignore you. But that's not what the sales pitch is focused on.

reply
ori_b
13 minutes ago
[-]
The majority of examples describe 'person without<skill> can do thing needing <skill>'.
reply
Forgeties79
28 minutes ago
[-]
They purportedly solve the problem of needing skill to get things done. IME, this is usually repeated by VC backed LLM companies or people who haven’t knowingly had to deal with other people’s bad results.

This all bumps up against the fact that most people default to “you use the tool wrong” and/or “you should only use it to do things where you already have firm grasp or at least foundational knowledge.”

It also bumps against the fact that the average person is using LLM’s as a replacement for standard google search.

reply
jjallen
1 hour ago
[-]
Also AI could help you pick those skills up again faster, although you wouldn’t need to ever pick those skills up again unless AI ceased to exist.

What an interesting paradox-like situation.

reply
estetlinus
19 minutes ago
[-]
I believe some professor warned us about being over reliant on Google/reddit etc: “how would you be productive if internet went down” dilemma.

Well, if internet is down, so is our revenue buddy. Engineering throughput would be the last of our concerns.

reply
deadbabe
1 hour ago
[-]
Using LLMs as a learning tool isn’t what causes skill atrophy. It’s using them to solve entire problems without understanding what they’ve done.

And not even just understanding, but verifying that they’ve implemented the optimal solution.

reply
i_love_retros
54 minutes ago
[-]
>I am learning at an incredible rate with LLMs.

I don't believe it. Having something else do the work for you is not learning, no matter how much you tell yourself it is.

reply
tossandthrow
51 minutes ago
[-]
It is easy to not believe if you only apply an incredibly narrow world view.

Open your eyes, and you might become a believer.

reply
nothinkjustai
32 minutes ago
[-]
What is this, some sort of cult?
reply
tossandthrow
16 minutes ago
[-]
No, it is an as snarky response to a person being snarky about usefulness of AI agents.

It does seem like there is a cult of people who categorically see LLMs as being poor at anything without it being founded in anything experience other than their 2023 afternoon to play around with it.

reply
margalabargala
38 minutes ago
[-]
If you've seen further it's only because you've stood on the shoulders of giants.

Having other people do work for you is how people get to focus on things they actually care about.

Do you use a compiler you didn't write yourself? If so can you really say you've ever learned anything about computers?

reply
butterisgood
8 minutes ago
[-]
You have to build a computer to learn about computers!
reply
bluefirebrand
59 minutes ago
[-]
> I am learning at an incredible rate with LLMs

Could you do it again without the help of an LLM?

If no, then can you really claim to have learned anything?

reply
tossandthrow
54 minutes ago
[-]
I could definitely maintain the infrastructure without an llm. Albeit much slower.

And yes. If LLMs disappear, then we need to hire a lot of people to maintain the infrastructure.

Which naturally is a part of the risk modeling.

reply
danw1979
48 minutes ago
[-]
I think this is a bit dismissive.

It’s quite possible to be deep into solving a problem with an LLM guiding you where you’re reading and learning from what it says. This is not really that different from googling random blogs and learning from Stack Overflow.

Assuming everyone just sits there dribbling whilst Claude is in YOLO mode isn’t always correct.

reply
_blk
35 minutes ago
[-]
The challenge is not if you could do all of it without AI but any of it that you couldn't before.

Not everyone learns at the same pace and not everyone has the same fault tolerance threshold. In my experiencd some people are what I call "Japanese learners" perfecting by watching. They will learn with AI but would never do it themselves out of fear of getting something wrong while they understand most of it, others that I call "western learners" will start right away and "get their hands dirty" without much knowledge and also get it wrong right away. Both are valid learning strategies fitting different personalities.

reply
solarengineer
16 minutes ago
[-]
https://hex.ooo/library/power.html

When future humans rediscover mathematics.

reply
michaelje
3 minutes ago
[-]
Open models keep closing the eval gap for many tasks, and local inference continues to be increasingly viable. What's missing isn't technical capability, but productized convenience that makes the API path feel like the only realistic option.

Frontier labs are incentivized to keep it that way, and they're investing billions to make AI = API the default. But that's a business model, not a technical inevitability.

reply
dewarrn1
33 minutes ago
[-]
I'm hopeful that new efficiencies in training (Deepseek et al.), the impressive performance of smaller models enhanced through distillation, and a glut of past-their-prime-but-functioning GPUs all converge make good-enough open/libre models cheap, ubiquitous, and less resource-intensive to train and run.
reply
aliljet
48 minutes ago
[-]
What open models are truly competing with both Claude Code and Opus 4.7 (xhigh) at this stage?
reply
parinporecha
21 minutes ago
[-]
I've had a good experience with GLM-5.1. Sure it doesn't match xhigh but comes close to 4.6 at 1/3rd the cost
reply
esafak
23 minutes ago
[-]
GLM 5.1 competes with Sonnet. I'm not confident about Opus, though they claim it matches that too.
reply
Someone1234
31 minutes ago
[-]
That's a lame attitude. There are local models that are last year's SOTA, but that's not good enough because this year's SOTA is even better yet still...

I've said it before and I'll say it again, local models are "there" in terms of true productive usage for complex coding tasks. Like, for real, there.

The issue right now is that buying the compute to run the top end local models is absurdly unaffordable. Both in general but also because you're outbidding LLM companies for limited hardware resources.

You have a $10K budget, you can legit run last year's SOTA agentic models locally and do hard things well. But most people don't or won't, nor does it make cost effective sense Vs. currently subsidized API costs.

reply
gbro3n
21 minutes ago
[-]
I completely see your point, but when my / developer time is worth what it is compared to the cost of a frontier model subscription, I'm wary of choosing anything but the best model I can. I would love to be able to say I have X technique for compensating for the model shortfall, but my experience so far has been that bigger, later models out perform older, smaller ones. I genuinely hope this changes through. I understand the investment that it has taken to get us to this point, but intelligence doesn't seem like it's something that should be gated.
reply
Someone1234
12 minutes ago
[-]
Right; but every major generation has had diminishing returns on the last. Two years ago the difference was HUGE between major releases, and now we're discussing Opus 4.6 Vs. 4.7 and people cannot seem to agree if it is an improvement or regression (and even their data in the card shows regressions).

So my point is: If you have the attitude that unless it is the bleeding edge, it may have well not exist, then local models are never going to be good enough. But truth is they're now well exceeding what they need to be to be huge productivity tools, and would have been bleeding edge fairly recently.

reply
dgellow
32 minutes ago
[-]
Another aspect I haven’t seen discussed too much is that if your competitor is 10x more productive with AI, and to stay relevant you also use AI and become 10x more productive. Does the business actually grow enough to justify the extra expense? Or are you pretty much in the same state as you were without AI, but you are both paying an AI tax to stay relevant?
reply
JambalayaJimbo
1 minute ago
[-]
If the business doesn’t grow then you shed costs like employees
reply
redanddead
16 minutes ago
[-]
The alternative is probably also true. If your F500 competitor is also handicapped by AI somehow, then you're all stagnant, maybe at different levels. Meanwhile Anthropic is scooping up software engineers it supposedly made irrelevant with Mythos and moving into literally 2+ new categories per quarter
reply
xixixao
23 minutes ago
[-]
This is the “ad tax” reasoning, but ultimately I think the answer is greater efficiency. So there is a real value, even if all competitors use the tools.

It’s like saying clothing manufacturers are paying the “loom tax” tax when they could have been weaving by hand…

reply
SlinkyOnStairs
5 minutes ago
[-]
Software development is not a production line, the relationship between code output and revenue is extremely non-linear.

Where producing 2x the t-shirts will get you ~2x the revenue, it's quite unlikely that 10x the code will get you even close to 2x revenue.

With how much of this industry operates on 'Vendor Lock-in' there's a very real chance the multiplier ends up 0x. AI doesn't add anything when you can already 10x the prices on the grounds of "Fuck you. What are you gonna do about it?"

reply
Lihh27
4 minutes ago
[-]
it's worse than a tie. 10x everyone just floods the market and tanks per-unit price. you pay the AI tax and your output is worth less.
reply
senordevnyc
23 minutes ago
[-]
Either the business grows, or the market participants shed human headcount to find the optimal profit margin. Isn’t that the great unknown: what professions are going to see headcount reduction because demand can’t grow that fast (like we’ve seen in agriculture), and which will actually see headcount stay the same or even expand, because the market has enough demand to keep up with the productivity gains of AI? Increasingly I think software writ large is the latter, but individual segments in software probably are the former.
reply
tossandthrow
1 hour ago
[-]
The lock in is so incredibly poor. I could switch to whatever provider in minuets.

But it requires that one does not do something stupid.

Eg. For recurring tasks: keep the task specification in the source code and just ask Claude to execute it.

The same with all documentation, etc.

reply
GaryBluto
28 minutes ago
[-]
> open models

Google just released Gemma 4, perhaps that'd be worth a try?

reply
ben8bit
1 hour ago
[-]
Any recommendations on good open ones? What are you using primarily?
reply
culi
26 minutes ago
[-]
LMArena actually has a nice Pareto distribution of ELO vs price for this

  model                        elo   $/M
  ---------------------------------------
  glm-5.1                      1538  2.60
  glm-4.7                      1440  1.41
  minimax-m2.7                 1422  0.97
  minimax-m2.1-preview         1392  0.78
  minimax-m2.5                 1386  0.77
  deepseek-v3.2-thinking       1369  0.38
  mimo-v2-flash (non-thinking) 1337  0.24
https://arena.ai/leaderboard/code?viewBy=plot&license=open-s...
reply
blahblaher
1 hour ago
[-]
qwen3.5/3.6 (30B) works well,locally, with opencode
reply
zozbot234
1 hour ago
[-]
Mind you, a 30B model (3B active) is not going to be comparable to Opus. There are open models that are near-SOTA but they are ~750B-1T total params. That's going to require substantial infrastructure if you want to use them agentically, scaled up even further if you expect quick real-time response for at least some fraction of that work. (Your only hope of getting reasonable utilization out of local hardware in single-user or few-users scenarios is to always have something useful cranking in the background during downtime.)
reply
pitched
43 minutes ago
[-]
For a business with ten or more engineers/people-using-ai, it might still make sense to set this up. For an individual though, I can’t imagine you’d make it through to positive ROI before the hardware ages out.
reply
zozbot234
30 minutes ago
[-]
It's hard to tell for sure because the local inference engines/frameworks we have today are not really that capable. We have barely started exploring the implications of SSD offload, saving KV-caches to storage for reuse, setting up distributed inference in multi-GPU setups or over the network, making use of specialty hardware such as NPUs etc. All of these can reuse fairly ordinary, run-of-the-mill hardware.
reply
wuschel
11 minutes ago
[-]
What near SOTA open models are you referring to?
reply
pitched
57 minutes ago
[-]
I want to bump this more than just a +1 by recommending everyone try out OpenCode. It can still run on a Codex subscription so you aren’t in fully unfamiliar territory but unlocks a lot of options.
reply
zozbot234
53 minutes ago
[-]
The Codex TUI harness is also open source and you can use open models with it, so you can stay in even more familiar territory.
reply
pwython
37 minutes ago
[-]
pi-coding-agent (pi.dev) is also great. I've been using it with Gemma 4 and Qwen 3.6.
reply
jherdman
53 minutes ago
[-]
Is this sort of setup tenable on a consumer MBP or similar?
reply
danw1979
37 minutes ago
[-]
Qwen’s 30B models run great on my MBP (M4, 48GB) but the issue I have is cooling - the fan exhaust is straight onto the screen, which I can’t help thinking will eventually degrade it, given the thermal cycling it would go through. A Mac Studio makes far more sense for local inference just for this reason alone.
reply
pitched
48 minutes ago
[-]
For a 30B model, you want at least 20GB of VRAM and a 24GB MBP can’t quite allocate that much of it to VRAM. So you’d want at least a 32GB MBP.
reply
richardfey
1 minute ago
[-]
I have 24GB VRAM available and haven't yet found a decent model or combination. Last one I tried is Qwen with continue, I guess I need to spend more time on this.
reply
zozbot234
42 minutes ago
[-]
It's a MoE model so I'd assume a cheaper MBP would simply result in some experts staying on CPU? And those would still have a sizeable fraction of the unified memory bandwidth available.
reply
pitched
28 minutes ago
[-]
I haven’t tried this myself yet but you would still need enough non-vram ram available to the cpu to offload to cpu, right? This is a fully novice question, I have not ever tried it.
reply
_blk
22 minutes ago
[-]
Is there any model that practically compares to Sonnet 4.6 in code and vision and runs on home-grade (12G-24G) cards?
reply
cpursley
56 minutes ago
[-]
How are you running it with opencode, any tips/pointers on the setup?
reply
cmrdporcupine
59 minutes ago
[-]
GLM 5.1 via an infra provider. Running a competent coding capable model yourself isn't viable unless your standards are quite low.
reply
myaccountonhn
17 minutes ago
[-]
What infra providers are there?
reply
elbear
1 minute ago
[-]
There's DeepInfra. There's also OpenRouter where you can find several providers.
reply
DeathArrow
13 minutes ago
[-]
>perhaps we can come up with something like the "linux/postgres/git/http/etc" of the LLMs: something we all can benefit from while it not being monopolized by a single billionarie company

Training and inference costs so we would have to pay for them.

reply
i_love_retros
55 minutes ago
[-]
> we don't want a hard dependency on another multi-billion dollar company just to write software

My manager doesn't even want us to use copilot locally. Now we are supposed to only use the GitHub copilot cloud agent. One shot from prompt to PR. With people like that selling vendor lock in for them these companies like GitHub, OpenAI, Anthropic etc don't even need sales and marketing departments!

reply
tossandthrow
49 minutes ago
[-]
You are aware that using eg. Github copilot is not one shot? It will start an agentic loop.
reply
dgellow
30 minutes ago
[-]
Unnecessary nitpicking
reply
SilverElfin
25 minutes ago
[-]
Is that why they are racing to release so many products? It feels to me like they want to suck up the profits from every software vertical.
reply
Bridged7756
7 minutes ago
[-]
Yeah it seems so. Anthropic has entered the enshittification phase. They got people hooked onto their SOTAs so it's now time to keep releasing marginal performance increase models at 40% higher token price. The problem is that both Anthropic and OpenAI have no other income other than AI. Can't Google just drown them out with cheaper prices over the long run? It seems like an attrition battle to me.
reply
hgoel
1 hour ago
[-]
The bump from 4.6 to 4.7 is not very noticeable to me in improved capabilities so far, but the faster consumption of limits is very noticeable.

I hit my 5 hour limit within 2 hours yesterday, initially I was trying the batched mode for a refactor but cancelled after seeing it take 30% of the limit within 5 minutes. Had to cancel and try a serial approach, consumed less (took ~50 minutes, xhigh effort, ~60% of the remaining allocation IIRC), but still very clearly consumed much faster than with 4.6.

It feels like every exchange takes ~5% of the 5 hour limit now, when it used to be maybe ~1-2%. For reference I'm on the Max 5x plan.

For now I can tolerate it since I still have plenty of headroom in my limits (used ~5% of my weekly, I don't use claude heavily every day so this is OK), but I hope they either offer more clarity on this or improve the situation. The effort setting is still a bit too opaque to really help.

reply
_blk
27 minutes ago
[-]
From what I understand you shouldn't wait more than 5min between prompts without compacting or clearing or you'll pay for reinitializing the cache. With compaction you still pay but it's less input tokens. (Is compaction itself free?)
reply
hgoel
17 minutes ago
[-]
Ah I can see how my phrasing might be misleading, but these pronpts were made within 5 minutes of each other, the timing I mentioned were what Claude spent working.
reply
kalkin
1 hour ago
[-]
AFAICT this uses a token-counting API so that it counts how many tokens are in the prompt, in two ways, so it's measuring the tokenizer change in isolation. Smarter models also sometimes produce shorter outputs and therefore fewer output tokens. That doesn't mean Opus 4.7 necessarily nets out cheaper, it might still be more expensive, but this comparison isn't really very useful.
reply
h14h
1 hour ago
[-]
For some real data, Artificial Analysis reported that 4.6 (max) and 4.7 (max) used 160M tokens and 100M tokens to complete their benchmark suite, respectively:

https://artificialanalysis.ai/?intelligence-efficiency=intel...

Looking at their cost breakdown, while input cost rose by $800, output cost dropped by $1400. Granted whether output offsets input will be very use-case dependent, and I imagine the delta is a lot closer at lower effort levels.

reply
SkyPuncher
50 minutes ago
[-]
Yes. I actually noticed my token usage go down on 4.6 when I started switching every session to max effort. I got work done faster with fewer steps because thinking corrected itself before it cycled.

I’ve noticed 4.7 cycling a lot more on basic tasks. Though, it also seems a bit better at holding long running context.

reply
the_gipsy
32 minutes ago
[-]
With AIs, it seems like there never is a comparison that is useful.
reply
jascha_eng
15 minutes ago
[-]
yup its all vibes. And anthropic is winning on those in my book still
reply
manmal
1 hour ago
[-]
Why is it not useful? Input token pricing is the same for 4.7. The same prompt costs roughly 30% more now, for input.
reply
dktp
1 hour ago
[-]
The idea is that smarter models might use fewer turns to accomplish the same task - reducing the overall token usage

Though, from my limited testing, the new model is far more token hungry overall

reply
manmal
58 minutes ago
[-]
Well you‘ll need the same prompt for input tokens?
reply
httgbgg
23 minutes ago
[-]
Only the first one. Ideally now there is no second prompt.
reply
manmal
15 minutes ago
[-]
Are you aware that every tool call produces output which also counts as input to the LLM?
reply
kalkin
1 hour ago
[-]
That's valid, but it's also worth knowing it's only one part of the puzzle. The submission title doesn't say "input".
reply
gsleblanc
37 minutes ago
[-]
It's increasingly looking naive to assume scaling LLMs is all you need to get to full white-collar worker replacement. The attention mechanism / hopfield network is fundamentally modeling only a small subset of the full human brain, and all the increasing sustained hype around bolted-on solutions for "agentic memory" is, in my opinion, glaring evidence that these SOTA transformers alone aren't sufficient even when you just limit the space to text. Maybe I'm just parroting Yann LeCun.
reply
aerhardt
12 minutes ago
[-]
> you just limit the space to text

And even then... why can't they write a novel? Or lowering the bar, let's say a novella like Death in Venice, Candide, The Metamorphosis, Breakfast at Tiffany's...?

Every book's in the training corpus...

Is it just a matter of someone not having spent a hundred grand in tokens to do it?

reply
someuser54541
1 hour ago
[-]
Should the title here be 4.6 to 4.7 instead of the other way around?
reply
UltraSane
1 hour ago
[-]
Writing Opus 4.6 to 4.7 does make more sense for people who read left to right.
reply
pixelatedindex
1 hour ago
[-]
I’m impressed with anyone who can read English right to left.
reply
jlongman
41 minutes ago
[-]
reply
amulyabaral
10 minutes ago
[-]
Whoa! TIL! I struggled a bit to read this style at first, but felt it get easier after a few tries.
reply
einpoklum
53 minutes ago
[-]
Right to Left English - read can, who? Anyone with [which] impressed am I.
reply
y1n0
41 minutes ago
[-]
Yoda, you that is?
reply
embedding-shape
1 hour ago
[-]
But the page is not in a language that should be read right to left, doesn't that make that kind of confusing?
reply
usrnm
1 hour ago
[-]
Did you mean "right to left"?
reply
embedding-shape
1 hour ago
[-]
I very much did, it got too confusing even for me. Thanks!
reply
bee_rider
1 hour ago
[-]
Err, how so?
reply
freak42
1 hour ago
[-]
absolutely!
reply
rectang
1 hour ago
[-]
For now, I'm planning to stick with Opus 4.5 as a driver in VSCode Copilot.

My workflow is to give the agent pretty fine-grained instructions, and I'm always fighting agents that insist on doing too much. Opus 4.5 is the best out of all agents I've tried at following the guidance to do only-what-is-needed-and-no-more.

Opus 4.6 takes longer, overthinks things and changes too much; the high-powered GPTs are similarly flawed. Other models such as Sonnet aren't nearly as good at discerning my intentions from less-than-perfectly-crafted prompts as Opus.

Eventually, I quit experimenting and just started using Opus 4.5 exclusively knowing this would all be different in a few months anyway. Opus cost more, but the value was there.

But now I see that 4.7 is going to replace both 4.5 and 4.6 in VSCode Copilot, and with a 7.5x modifier. Based on the description, this is going to be a price hike for slower performance — and if the 4.5 to 4.6 change is any guide, more overthinking targeted at long-running tasks, rather than fine-grained. For me, that seems like a step backwards.

reply
tiffanyh
1 hour ago
[-]
I was using Opus 4.7 just yesterday to help implement best practices on a single page website.

After just ~4 prompts I blew past my daily limit. Another ~7 more prompts & I blew past my weekly limit.

The entire HTMl/CSS/JS was less than 300 lines of code.

I was shocked how fast it exhausted my usage limits.

reply
hirako2000
1 hour ago
[-]
I haven't used Claude. Because I suspect this sort of things to come.

With enterprise subscription, the bill gets bigger but it's not like VP can easily send a memo to all its staff that a migration is coming.

Individuals may end their subscription, that would appease the DC usage, and turn profits up.

reply
sync
59 minutes ago
[-]
Which plan are you on? I could see that happening with Pro (which I think defaults to Sonnet?), would be surprised with Max…
reply
tiffanyh
46 minutes ago
[-]
Pro. It even gave me $20 free credits, and exhausted free credits nearly instantly.
reply
templar_snow
57 minutes ago
[-]
It eats even the Max plan like crazy.
reply
tomtomistaken
58 minutes ago
[-]
Are you using Claude subscription? Because that's not how it works there.
reply
QuadrupleA
9 minutes ago
[-]
One thing I don't see often mentioned - OpenAI API's auto token caching approach results in MASSIVE cost savings on agent stuff. Anthropic's deliberate caching is a pain in comparison. Wish they'd just keep the KV cache hot for 60 seconds or so, so we don't have to pay the input costs over and over again, for every growing conversation turn.
reply
autoconfig
52 minutes ago
[-]
My initial experience with Opus 4.7 has been pretty bad and I'm sticking to Codex. But these results are meaningless without comparing outcome. Wether the extra token burn is bad or not depends on whether it improves some quality / task completion metric. Am I missing something?
reply
zuzululu
29 minutes ago
[-]
Same I was excited about 4.7 but seeing more anecdotes to conclude its not big of a boost to justify the extra tokenflatino

Sticking with codex. Also GPT 5.5 is set to come next week.

reply
glerk
34 minutes ago
[-]
I'd be ok with paying more if results were good, but it seems like Anthropic is going for the Tinder/casino intermittent reinforcement strategy: optimized to keep you spending tokens instead of achieving results.

And yes, Claude models are generally more fun to use than GPT/Codex. They have a personality. They have an intuition for design/aesthetics. Vibe-coding with them feels like playing a video game. But the result is almost always some version of cutting corners: tests removed to make the suite pass, duplicate code everywhere, wrong abstraction, type safety disabled, hard requirements ignored, etc.

These issues are not resolved in 4.7, no matter what the benchmarks say, and I don't think there is any interest in resolving them.

reply
templar_snow
1 hour ago
[-]
Brutal. I've been noticing that 4.7 eats my Max Subscription like crazy even when I do my best to juggle tasks (or tell 4.7 to use subagents with) Sonnet 4.6 Medium and Haiku. Would love to know if anybody's found ideal token-saving approaches.
reply
copperx
38 minutes ago
[-]
I haven't seen a noticeable difference BUT I've been always using the context mode plugin.
reply
FireBeyond
10 minutes ago
[-]
What plugin is this?
reply
couchdb_ouchdb
22 minutes ago
[-]
Comments here overall do not reflect my experience -- i'm puzzled how the vast majority are using this technology day to day. 4.7 is absolute fire and an upgrade on 4.6.
reply
bobjordan
45 minutes ago
[-]
I've spent the past 4+ months building an internal multi-agent orchestrator for coding teams. Agents communicate through a coordination protocol we built, and all inter-agent messages plus runtime metrics are logged to a database.

Our default topology is a two-agent pair: one implementer and one reviewer. In practice, that usually means Opus writing code and Codex reviewing it.

I just finished a 10-hour run with 5 of these teams in parallel, plus a Codex run manager. Total swarm: 5 Opus 4.7 agents and 6 Codex/GPT-5.4 agents.

Opus was launched with:

`export CLAUDE_AUTOCOMPACT_PCT_OVERRIDE=35 claude --dangerously-skip-permissions --model 'claude-opus-4-7[1M]' --effort high --thinking-display summarized`

Codex was launched with:

`codex --dangerously-bypass-approvals-and-sandbox --profile gpt-5-4-high`

What surprised me was usage: after 10 hours, both my Claude Code account and my Codex account had consumed 28% of their weekly capacity from that single run.

I expected Claude Code usage to be much higher. Instead, on these settings and for this workload, both platforms burned the same share of weekly budget.

So from this datapoint alone, I do not see an obvious usage-efficiency advantage in switching from Opus 4.7 to Codex/GPT-5.4.

reply
pitched
36 minutes ago
[-]
I just switched fully into Codex today, off of Claude. The higher usage limits were one factor but I’m also working towards a custom harness that better integrates into the orchestrator. So the Claude TOS was also getting in the way.
reply
monkpit
34 minutes ago
[-]
Does this have anything to do with the default xhigh effort?
reply
alphabettsy
25 minutes ago
[-]
I’m trying to understand how this is useful information on its own?

Maybe I missed it, but it doesn’t tell you if it’s more successful for less overall cost?

I can easily make Sonnet 4.6 cost way more than any Opus model because while it’s cheaper per prompt it might take 10x more rounds (or never) solve a problem.

reply
senordevnyc
20 minutes ago
[-]
Everything in AI moves super quickly, including the hivemind. Anthropic was the darling a few weeks ago after the confrontation with the DoD, but now we hate them because they raised their prices a little. Join us!
reply
tailscaler2026
1 hour ago
[-]
Subsidies don't last forever.
reply
pitched
1 hour ago
[-]
Running an open like Kimi constantly for an entire month will cost around 100-200$, being roughly equal to a pro-tier subscription. This is not my estimate so I’m more than open to hearing refutations. Kimi isn’t at all Opus-level intelligent but the models are roughly evenly sized from the guesses I’ve seen. So I don’t think it’s the infra being subsidized as much as it’s the training.
reply
varispeed
7 minutes ago
[-]
How do you get anything sensible out of Kimi?
reply
senordevnyc
16 minutes ago
[-]
I’m using Composer 2, Cursor’s model they built on top of Kimi, and it’s great. Not Opus level, but I’m finding many things don’t need Opus level.
reply
nothinkjustai
51 minutes ago
[-]
Kimi costs 0.3/$1.72 on OpenRouter, $200 for that gives you way more than you would get out of a $200 Claude subscription. There are also various subscription plans you can use to spend even less.
reply
smt88
58 minutes ago
[-]
Tell that to oil and defense companies.

If tech companies convince Congress that AI is an existential issue (in defense or even just productivity), then these companies will get subsidies forever.

reply
andai
53 minutes ago
[-]
Yeah, USA winning on AI is a national security issue. The bubble is unpoppable.

And shafting your customers too hard is bad for business, so I expect only moderate shafting. (Kind of surprised at what I've been seeing lately.)

reply
gadflyinyoureye
1 hour ago
[-]
I've been assuming this for a while. If I have a complex feature, I use Opus 4.6 in copilot to plan (3 units of my monthly limit). Then have Grok or Gemini (.25-.33) of my monthly units to implement and verify the work. 80% of the time it works every time. Leave me plenty of usage over the month.
reply
andai
50 minutes ago
[-]
Yeah I've been arriving at the same thing. The other models give me way more usage but they don't seem to have enough common sense to be worth using as the main driver.

If I can have Claude write up the plan, and the other models actually execute it, I'd get the best of both worlds.

(Amusingly, I think Codex tolerates being invoked by Claude (de facto tolerated ToS violation), but not the other way around.)

reply
KellyCriterion
54 minutes ago
[-]
Yesterday, I killed my weekly limit with just three prompts and went into extra usage for ~18USD on top
reply
jimkleiber
38 minutes ago
[-]
I wonder if this is like when a restaurant introduces a new menu to increase prices.

Is Opus 4.7 that significantly different in quality that it should use that much more in tokens?

I like Claude and Anthropic a lot, and hope it's just some weird quirk in their tokenizer or whatnot, just seems like something changed in the last few weeks and may be going in a less-value-for-money direction, with not much being said about it. But again, could just be some technical glitch.

reply
hopfenspergerj
37 minutes ago
[-]
You can't accidentally retrain a model to use a different tokenizer. It changes the input vectors to the model.
reply
anabranch
2 hours ago
[-]
I wanted to better understand the potential impact for the tokenizer change from 4.6 and 4.7.

I'm surprised that it's 45%. Might go down (?) with longer context answers but still surprising. It can be more than 2x for small prompts.

reply
pawelduda
1 hour ago
[-]
Not very encouraging for longer use, especially that the longer the conversation, the higher the chance the agent will go off the rails
reply
razodactyl
59 minutes ago
[-]
If anyone's had 4.7 update any documents so far - notice how concise it is at getting straight to the point. It rewrote some of my existing documentation (using Windsurf as the harness), not sure I liked the decrease in verbosity (removed columns and combined / compressed concepts) but it makes sense in respect to the model outputting less to save cost.

To me this seems more that it's trained to be concise by default which I guess can be countered with preference instructions if required.

What's interesting to me is that they're using a new tokeniser. Does it mean they trained a new model from scratch? Used an existing model and further trained it with a swapped out tokeniser?

The looped model research / speculation is also quite interesting - if done right there's significant speed up / resource savings.

reply
andai
57 minutes ago
[-]
Interesting. In conversational use, it's noticeably more verbose.
reply
ivanfioravanti
27 minutes ago
[-]
reply
aray07
40 minutes ago
[-]
Came to a similar conclusion after running a bunch of tests on the new tokenizer

It was on the higher end of Anthropics range - closer to 30-40% more tokens

https://www.claudecodecamp.com/p/i-measured-claude-4-7-s-new...

reply
ausbah
1 hour ago
[-]
is it really unthinkable that another oss/local model will be released by deepseek, alibaba, or even meta that once again give these companies a run for their money
reply
rectang
46 minutes ago
[-]
For my working style (fine-grained instructions to the agent), Opus 4.5 is basically ideal. Opus 4.6 and 4.7 seem optimized for more long-running tasks with less back and forth between human and agent; but for me Opus 4.6 was a regression, and it seems like Opus 4.7 will be another.

This gives me hope that even if future versions of Opus continue to target long-running tasks and get more and more expensive while being less-and-less appropriate for my style, that a competitor can build a model akin to Opus 4.5 which is suitable for my workflow, optimizing for other factors like cost.

reply
zozbot234
1 hour ago
[-]
> is it really unthinkable that another oss/local model will be released by deepseek, alibaba, or even meta that once again give these companies a run for their money

Plenty of OSS models being released as of late, with GLM and Kimi arguably being the most interesting for the near-SOTA case ("give these companies a run for their money"). Of course, actually running them locally for anything other than very slow Q&A is hard.

reply
amelius
1 hour ago
[-]
I'm betting on a company like Taalas making a model that is perhaps less capable but 100x as fast, where you could have dozens of agents looking at your problem from all different angles simultaneously, and so still have better results and faster.
reply
andai
54 minutes ago
[-]
Yeah, it's a search problem. When verification is cheap, reducing success rate in exchange for massively reducing cost and runtime is the right approach.
reply
never_inline
39 minutes ago
[-]
You underestimating the algorithmic complexity of such brute forcing, and the indirect cost of brittle code that's produced by inferior models
reply
embedding-shape
1 hour ago
[-]
Nothing is unthinkable, I could think of Transformers.V2 that might look completely different, maybe iterations on Mamba turns out fruitful or countless of other scenarios.
reply
pitched
1 hour ago
[-]
Now that Anthropic have started hiding the chain of thought tokens, it will be a lot harder for them
reply
zozbot234
1 hour ago
[-]
Anthropic and OpenAI never showed the true chain of thought tokens. Ironically, that's something you only get from local models.
reply
slowmovintarget
1 hour ago
[-]
Qwen released a new model the same day (3.6). The headline was kind of buried by Anthropic's release, though.

https://news.ycombinator.com/item?id=47792764

reply
napolux
48 minutes ago
[-]
Token consumption is huge compared to 4.6 even for smaller tasks. Just by "reasoning" after my first prompt this morning I went over 50% over the 5 hours quota.
reply
ben8bit
1 hour ago
[-]
Makes me think the model could actually not even be smarter necessarily, just more token dependent.
reply
hirako2000
58 minutes ago
[-]
Asking a seller to sell less.

That's an incentive difficult to reconcile with the user's benefit.

To keep this business running they do need to invest to make the best model, period.

It happens to be exactly what Anthropic's strategy is. That and great tooling.

reply
l5870uoo9y
1 hour ago
[-]
My impression the reverse is true when upgrading to GPT-5.4 from GPT-5; it uses fewer tokens(?).
reply
andai
47 minutes ago
[-]
But with the same tokenizer, right?

The difference here is Opus 4.7 has a new tokenizer which converts the same input text to a higher number of tokens. (But it costs the same per token?)

> Claude Opus 4.7 uses a new tokenizer, contributing to its improved performance on a wide range of tasks. This new tokenizer may use roughly 1x to 1.35x as many tokens when processing text compared to previous models (up to ~35% more, varying by content), and /v1/messages/count_tokens will return a different number of tokens for Claude Opus 4.7 than it did for Claude Opus 4.6.

> Pricing remains the same as Opus 4.6: $5 per million input tokens and $25 per million output tokens.

ArtificialAnalysis reports 4.7 significantly reduced output tokens though, and overall ~10% cheaper to run the evals.

I don't know how well that translates to Claude Code usage though, which I think is extremely input heavy.

reply
QuadrupleA
6 minutes ago
[-]
Definitely seems like AI money got tight the last month or two - that the free beer is running out and enshittification has begun.
reply
matt3210
1 hour ago
[-]
Did anyone expect the price to go down? The point of new models is to raise prices
reply
operatingthetan
1 hour ago
[-]
The long-term pitch of these AI companies is that the AI will essentially replace workers for low cost.

If the models don't get to a higher level of 'intelligence' and still struggle with certain basic tasks at the SOTA while also getting more expensive, then the pitch is misleading and unlikely to happen.

So yes, I expect the price to go down.

reply
ant6n
1 hour ago
[-]
I thought it would be to get better, to stay competitive with the competitors and free models.
reply
coldtea
1 hour ago
[-]
This, the push towards per-token API charging, and the rest are just a sign of things to come when they finally establish a moat and full monoply/duopoly, which is also what all the specialized tools like Designer and integrations are about.

It's going to be a very expensive game, and the masses will be left with subpar local versions. It would be like if we reversed the democratization of compilers and coding tooling, done in the 90s and 00s, and the polished more capable tools are again all proprietary.

reply
quux
1 hour ago
[-]
If only there were an Open AI company who's mandate, built into the structure of the company, were to make frontier models available to everyone for the good of humanity.

Oh well

reply
slowmovintarget
1 hour ago
[-]
Things used to be better... really.

OpenAI was built as you say. Google had a corporate motto of "Don't be evil" which they removed so they could, um, do evil stuff without cognitive dissonance, I guess.

This is the other kind of enshitification where the businesses turn into power accumulators.

reply
throwaway041207
1 hour ago
[-]
Yep, between this and the pricing for the code review tool that was released a couple weeks ago (15-25 a review), and the usage pricing and very expensive cost of Claude Design, I do wonder if Anthropic is making a conscious, incremental effort to raise the baseline for AI engineering tasks, especially for enterprise customers.

You could call it a rug pull, but they may just be doing the math and realize this is where pricing needs to shift to before going public.

reply
zozbot234
1 hour ago
[-]
There's been speculation that the code review might actually be Mythos. It would seem to explain the cost.
reply
varispeed
11 minutes ago
[-]
I spent one day with Opus 4.7 to fix a bug. It just ran in circles despite having the problem "in front of its eyes" with all supporting data, thorough description of the system, test harness that reproduces the bug etc. While I still believe 4.7 is much "smarter" than GPT-5.4 I decided to give it ago. It was giving me dumb answers and going off the rails. After accusing it many times of being a fraud and doing it on purpose so that I spend more money, it fixed the bug in one shot.

Having a taste of unnerfed Opus 4.6 I think that they have a conflict of interest - if they let models give the right answer first time, person will spend less time with it, spend less money, but if they make model artificially dumber (progressive reasoning if you will), people get frustrated but will spend more money.

It is likely happening because economics doesn't work. Running comparable model at comparable speed for an individual is prohibitively expensive. Now scale that to millions of users - something gotta give.

reply
axeldunkel
54 minutes ago
[-]
the better the tokenizer maps text to its internal representation, the better the understanding of the model what you are saying - or coding! But 4.7 is much more verbose in my experience, and this probably drives cost/limits a lot.
reply
DeathArrow
14 minutes ago
[-]
We (my wallet and I) are pretty happy with GLM 5.1 and MiniMax 2.7.
reply
dackdel
1 hour ago
[-]
releases 4.8 and deletes everything else. and now 4.8 costs 500% more than 4.7. i wonder what it would take for people to start using kimi or qwen or other such.
reply
silverwind
1 hour ago
[-]
Still worth it imho for important code, but it shows that they are hitting a ceiling while trying to improve the model which they try to solve by making it more token-inefficient.
reply
Shailendra_S
1 hour ago
[-]
45% is brutal if you're building on top of these models as a bootstrapped founder. The unit economics just don't work anymore at that price point for most indie products.

What I've been doing is running a dual-model setup — use the cheaper/faster model for the heavy lifting where quality variance doesn't matter much, and only route to the expensive one when the output is customer-facing and quality is non-negotiable. Cuts costs significantly without the user noticing any difference.

The real risk is that pricing like this pushes smaller builders toward open models or Chinese labs like Qwen, which I suspect isn't what Anthropic wants long term.

reply
OptionOfT
1 hour ago
[-]
That's the risk you take on.

There are 2 things to consider:

    * Time to market.
    * Building a house on someone else's land.
You're balancing the 2, hoping that you win the time to market, making the second point obsolete from a cost perspective, or you have money to pivot to DIY.
reply
c0balt
1 hour ago
[-]
One could reconsider whether building your business on top of a model without owning the core skills to make your product is viable regardless.

A smaller builder might reconsider (re)acquiring relevant skills and applying them. We don't suddenly lose the ability to program (or hire someone to do it) just because an inference provider is available.

reply
duped
1 hour ago
[-]
> if you're building on top of these models as a bootstrapped founder

This is going to be blunt, but this business model is fundamentally unsustainable and "founders" don't get to complain their prospecting costs went up. These businesses are setting themselves up to get Sherlocked.

The only realistic exit for these kinds of businesses is to score a couple gold nuggets, sell them to the highest bidder, and leave.

reply
blahblaher
1 hour ago
[-]
Conspiracy time: they released a new version just so hey could increase the price so that people wouldn't complain so much along the lines of "see this is a new version model, so we NEED to increase the price") similar to how SaaS companies tack on some shit to the product so that they can increase prices
reply
willis936
50 minutes ago
[-]
The result is the same: they lose their brand of producing quality output. However the more clever the maneuver they try to pull off the more clear it is to their customers that they are not earning trust. That's what will matter at the end of this. Poor leadership at Claude.
reply
mvkel
1 hour ago
[-]
The cope is real with this model. Needing an instruction manual to learn how to prompt it "properly" is a glaring regression.

The whole magic of (pre-nerfed) 4.6 was how it magically seemed to understand what I wanted, regardless of how perfectly I articulated it.

Now, Anth says that needing to explicitly define instructions are as a "feature"?!

reply
fny
1 hour ago
[-]
I'm going to suggest what's going on here is Hanlon's Razor for models: "Never attribute to malice that which is adequately explained by a model's stupidity."

In my opinion, we've reached some ceiling where more tokens lead only to incremental improvements. A conspiracy seems unlikely given all providers are still competing for customers and a 50% token drives infra costs up dramatically too.

reply
willis936
49 minutes ago
[-]
Never attribute to incompetence what is sufficiently explained by greed.
reply
bparsons
41 minutes ago
[-]
Had a pretty heavy workload yesterday, and never hid the limit on claude code. Perhaps they allowed for more tokens for the launch?

Claude design on the other hand seemed to eat through (its own separate usage limit) very fast. Hit the limit this morning in about 45 mins on a max plan. I assume they are going to end up spinning that product off as a separate service.

reply
ai_slop_hater
1 hour ago
[-]
Does anyone know what changed in the tokenizer? Does it output multiple tokens for things that were previously one token?
reply
quux
1 hour ago
[-]
It must, if it now outputs more tokens than 4.6's tokenizer for the same input. I think the announcement and model cards provide a little more detail as to what exactly is different
reply
therobots927
1 hour ago
[-]
Wow this is pretty spectacular. And with the losses anthro and OAI are running, don’t expect this trend to change. You will get incremental output improvements for a dramatically more expensive subscription plan.
reply
falcor84
1 hour ago
[-]
Indeed, and if we accept the argument of this tech approaching AGI, we should expect that within x years, the subscription cost may exceed the salary cost of a junior dev.

To be clear, I'm not saying that it's a good thing, but it does seem to be going in this direction.

reply
dgellow
1 hour ago
[-]
If LLMs do reach AGI (assuming we have an actual agreed upon definition), it would make sense to pay way more than a junior salary. But also, LLMs won’t give us AGI (again, assuming we have an actual, meaningful definition)
reply
therobots927
18 minutes ago
[-]
I absolutely do not accept that argument. It’s clear models hit a plateau roughly a year ago and all incremental improvements come at an increasingly higher cost.

And junior devs have never added much value. The first two years of any engineer’s career is essentially an apprenticeship. There’s no value add from have a perpetually junior “employee”.

reply
justindotdev
1 hour ago
[-]
i think it is quite clear that staying with opus 4.6 is the way to go, on top of the inflation, 4.7 is quite... dumb. i think they have lobotomized this model while they were prioritizing cybersecurity and blocking people from performing potentially harmful security related tasks.
reply
bcherny
1 hour ago
[-]
Hey, Boris from the Claude Code team here. People were getting extra cyber warnings when using old versions of Claude Code with Opus 4.7. To fix it, just run claude update to make sure you're on the latest.

Under the hood, what was happening is that older models needed reminders, while 4.7 no longer needs it. When we showed these reminders to 4.7 it tended to over-fixate on them. The fix was to stop adding cyber reminders.

More here: https://x.com/ClaudeDevs/status/2045238786339299431

reply
bakugo
1 hour ago
[-]
How do you justify the API and web UI versions of 4.7 refusing to solve NYT Connections puzzles due to "safety"?

https://x.com/LechMazur/status/2044945702682309086

reply
templar_snow
1 hour ago
[-]
To be fair, reading the New York Times is a safety risk for any intelligent life form these days. But still.
reply
maleldil
45 minutes ago
[-]
You don't need to subscribe to the NYT to play the games. There's a separate subscription.
reply
vessenes
1 hour ago
[-]
4.7 is super variable in my one day experience - it occasionally just nails a task. Then I'm back to arguing with it like it's 2023.
reply
aenis
1 hour ago
[-]
My experience as well, unfortunately. I am really looking forward to reading, in a few years, a proper history of the wild west years of AI scaling. What is happening in those companies at the moment must be truly fascinating. How is it possible, for instance, that I never, ever, had an instance of not being able to use Claude despite the runaway success it had, and - i'd guess - expotential increase in infra needs. When I run production workloads on vertex or bedrock i am routinely confronted with quotas, here - it always works.
reply
dgellow
1 hour ago
[-]
That has been my Friday experience as well… very frustrating to go back to the arguing, I forgot how tense that makes me feel
reply
micromacrofoot
1 hour ago
[-]
The latest qwen actually performs a little better for some tasks, in my experience

latest claude still fails the car wash test

reply
monkeydust
1 hour ago
[-]
'sixxxx, seeeeven'....sorry have little kids, couldn't resist but perhaps that explains what's going on!
reply