Earlier quoted context omitted.
> Still trying to get a decent pelican out of this one but the new thinking stuff is tripping me up Wouldn't that be p-hacking where p stands for pelican?
Input: I want to wash my car. The car wash is 50 meters away. Should I walk or drive? Output: Walk. It'll take you under a minute, and driving 50 meters barely gets the engine warm — plus you'd just have to park again at the other end. Honestly, by the time you started the car, you'd already be there on foot. --- I asked it to figure out why it made the mistake: "Physical/spatial common sense. Exactly what just happe…
Claude Opus 4.7
791–800 of 1001 posts
Re: Claude Opus 4.7
#792Too late, personally after how bad 4.6 was the past week I was pushed to codex, which seems to mostly work at the same level from day to day. Just last night I was trying to get 4.6 to lookup how to do some simple tensor parallel work, and the agent used 0 web fetches and just hallucinated 17K very wrong tokens. Then the main agent decided to pretend to implement tp, and just copied the entire model to each node...
Re: Claude Opus 4.7
#793noticing sharp uptick in "i switched to codex" replies lately. a "codex for everything" post flocking the front page on the day of the opus 4.7 release me and coworker just gave codex a 3 day pilot and it was not even close to the accuracy and ability to complete & problem solve through what we've been using claude for. are we being spammed? great. annoying. i clicked into this to read the differences and initial exp…
Re: Claude Opus 4.7
#794Re: Claude Opus 4.7
#7954.6 has also been giving similar hallucination-prone answers for the last week or so and writing code that has really weird design decisions much more than it did when it was released.
Also whenever you ask it to do a UI it always adds a bunch of superfluous counts and bits of text saying what the UI is - even when it's obvious what it does. For example you ask it to write a fast virtualised list and it will include a label saying "Fast Virtualized List -- 500 items". It doesn't need a label to say that!
Re: Claude Opus 4.7
#796Interestingly github-copilot is charging 2.5x as much for opus 4.7 prompts as they charged for opus 4.6 prompts (7.5x instead of 3x). And they're calling this "promotional pricing" which sounds a lot like they're planning to go even higher. Note they charge per-prompt and not per-token so this might in part be an expectation of more tokens per prompt. https://github.blog/changelog/2026-04-16-claude-opus-4-7-is-...
Re: Claude Opus 4.7
#797I'm finding the "adaptive thinking" thing very confusing, especially having written code against the previous thinking budget / thinking effort / etc modes: https://platform.claude.com/docs/en/build-with-claude/adapti... Also notable: 4.7 now defaults to NOT including a human-readable reasoning token summary in the output, you have to add "display": "summarized" to get that: https://platform.claude.com/docs/en/build-…
Its especially concerning / frustrating because boris’s reply to my bug report on opus being dumber was “we think adaptive thinking isnt working” and then thats the last I heard of it: https://news.ycombinator.com/item?id=47668520 Now disabling adaptive thinking plus increasing effort seem to be what has gotten me back to baseline performance but “our internal evals look good“ is not good enough right now for what ma…
Re: Claude Opus 4.7
#798They've increased their cybersecurity usage filters to the point that Opus 4.7 refuses to work on any valid work, even after web fetching the program guidelines itself and acknowledging "This is authorized research under the [Redacted] Bounty program, so the findings here are defensive research outputs, not malware. I'll analyze and draft, not weaponize anything beyond what's needed to prove the bug to [Redacted]. I…
⎿ API Error: Claude Code is unable to respond to this request, which appears to violate our Usage Policy (https://www.anthropic.com/legal/aup). This request triggered restrictions on violative cyber content and was blocked under Anthropic's Usage Policy. To request an adjustment pursuant to our Cyber Verification Program based on how you use Claude, fill out https://claude.com/form/cyber-use-case?token=[REDACTED] Ple…
Re: Claude Opus 4.7
#799Assuming /effort max still gets the best performance out of the model (meaning "ULTRATHINK" is still a step below /effort max, and equivalent to /effort high), here is what I landed on when trying to get Opus 4.7 to be at peak performance all the time in ~/.claude/settings.json: { "env": { "CLAUDE_CODE_EFFORT_LEVEL": "max", "CLAUDE_CODE_DISABLE_BACKGROUND_TASKS": "1" } } The env field in settings.json persists across…
Seems so silly that they won't support `effortLevel: "max"` while a env var is perfectly fine.
Re: Claude Opus 4.7
#800You can fool some people all the time, and all people some of the time, but you cannot fool all the people all the time. for the context: I was fixing a draining test for a worker implementation in parsing engine, claude code took 1 hour with high effort at 1 AM with a broken unfixed implementation. Slept, wake up and give codex a try, it fixed in 5 minutes with a 1% of quota usage.