An update on recent Claude Code quality reports
551–560 of 778 posts
Re: An update on recent Claude Code quality reports
#552Earlier quoted context omitted.
They gaslit people for months saying it wasn't an issue publicly. That's the reason for the flak
I know some people use the word "gaslighting" in connection with Anthropic. I've read some of those threads here, and some on Reddit, but I don't put much stock in them. To step back, hopefully reasonable people can start here: 1. Degraded service sucks. 2. Anthropic not saying i.e. "we're not seeing it" sucks. 3. Not getting a fix when you want it sucks. Try to understand what I mean when I say none of the above mee…
Re: An update on recent Claude Code quality reports
#553Earlier quoted context omitted.
How do you do "due diligence" on an API that frequently makes undocumented changes and only publishes acknowledgement of change after users complain? You're also talking about internal technical implementations of a chat bot. 99.99% of users won't even understand the words that are being used.
I use CC, and I understand what caching means. I have no idea how that works with a LLM implementation nor do I actually know what they are caching in this context.
Re: An update on recent Claude Code quality reports
#554Earlier quoted context omitted.
I’m not sure that it’s O(N) with caching but this illustrates the N^2 part: https://blog.exe.dev/expensively-quadratic
If there was an exponential cost, I would expect to see some sort of pricing based on that. I would also expect to see it taking exponentially longer to process a prompt. I don't believe LLMs work like that. The "scary quadratic" referenced in what you linked seems to be pointing out that cache reads increase as your conversation continues? If I'm running a database keeping track of a conversation, and each time it w…
This is the operation that is basically done for each message in an LLM chat in the logical level: the complete context/history is sent in to be processed. If you wish to process only the additions, you must preserve the processed state on server-side (in KV cache). KV caches can be very large, e.g. tens of gigabytes.
Re: An update on recent Claude Code quality reports
#555Re: An update on recent Claude Code quality reports
#556Re: An update on recent Claude Code quality reports
#557Earlier quoted context omitted.
I got exactly this warning message yesterday, saying that it could use up a significant amount of my token budget if I resumed the conversation without compaction.
Compaction wont save you, in fact calling compaction will eat about 3-5x the cold cache cost in usage ive found.
Maybe the UI could do that for sessions that the user hasn't left yet, when the deadline comes near.
Re: An update on recent Claude Code quality reports
#558Just add this, it works better than Opus 4.7 vim ~/.claude/settings.json { "model": "claude-opus-4-6", "fastMode": false, "effortLevel": "high", "alwaysThinkingEnabled": true, "autoCompactWindow": 700000 }
Wouldn't xhigh or max work better
Re: An update on recent Claude Code quality reports
#559Earlier quoted context omitted.
Hey, Boris from the Claude Code team here. Normally, when you have a conversation with Claude Code, if your convo has N messages, then (N-1) messages hit prompt cache -- everything but the latest message. The challenge is: when you let a session idle for >1 hour, when you come back to it and send a prompt, it will be a full cache miss, all N messages. We noticed that this corner case led to outsized token costs for u…
These controversies erupt regularly, and I hope that you will see a common thing with most of them: you make a decision for your users without informing them. Please fight this hubris. Your users matter. Many of us use your tools for everyday work and do not appreciate having the rug pulled from under them on a regular basis, much less so in an underhanded and undisclosed way. I don't mind the bugs, these will happen…
Re: An update on recent Claude Code quality reports
#560Earlier quoted context omitted.
I'm unsure of the sizes needed for prompt cache, but I suspect its several gigs in size (A percentage of the model weight size), how would the user upload this every time they started a resumed a old idle session, also are they going to save /every/ session you do this with?
A few gigs of disk is not that expensive. Imo they should allocate every paying user (at least) one disk cache slot that doesn't expire after any time. Use it for their most recent long chat (a very short question-answer that could easily be replayed shouldn't evict a long convo).
So it would probably be a quite a long transfer to perform in these cases, probably not very feasible to implement at scale.