Shame it's only the API. Would've loved to see it via the web interface on claude.ai itself.
Can you even fit 200+k tokens worth of context in the web interface? IMO Claude's API workbench is the worst of the three major providers.
Claude Sonnet 4 now supports 1M tokens of context
21–30 of 706 posts
Re: Claude Sonnet 4 now supports 1M tokens of context
#22Re: Claude Sonnet 4 now supports 1M tokens of context
#23I’d rather having an option to limit the context size
Re: Claude Sonnet 4 now supports 1M tokens of context
#24Could we please have zip files too? ChatGPT and Gemini both unpack zip files via the chat window.
Now how about a button to download all files?
Re: Claude Sonnet 4 now supports 1M tokens of context
#25This is definitely good to have this as an option but at the same time having more context reduces the quality of the output because it's easier for the LLM to get "distracted". So, I wonder what will happen to the quality of code produced by tools like Claude Code if users don't properly understand the trade off being made (if they leave it in auto mode of coding right up to the auto compact).
What do you recommend doing instead? I've been using Claude Code a lot but am still pretty novice at the best practices around this.
Also, commit frequently, and if the AI constantly goes down the wrong path ("I can't create X so I'll stub it out with Y, we'll fix it later"), you can update the original plan with wording to tell it not to take that path ("Do not ever stub out X, we must make X work"), and then start a fresh session with an older and simpler version of the code and see if that fresh context ends up down a better path.
You can also run multiple attempts in parallel if you use tooling that supports that (containers + git worktrees is one way)
Re: Claude Sonnet 4 now supports 1M tokens of context
#26Context window after certain size doesn’t bring in much benefit but higher bill. If it still keeps forgetting instructions it would be just much easier to be ended up with long messages with higher context consumption and hence the bill I’d rather having an option to limit the context size
Re: Claude Sonnet 4 now supports 1M tokens of context
#27This is definitely one of my CORE problem as I use these tools for "professional software engineering." I really desperately need LLMs to maintain extremely effective context and it's not actually that interesting to see a new model that's marginally better than the next one (for my day-to-day). However. Price is king. Allowing me to flood the context window with my code base is great, but given that the price has su…
Flooding the context also means increasing the likelihood of the LLM confusing itself. Mainly because of the longer context. It derails along the way without a reset.
Re: Claude Sonnet 4 now supports 1M tokens of context
#28Eagerly waiting for them to do this with Opus
Re: Claude Sonnet 4 now supports 1M tokens of context
#29This is definitely one of my CORE problem as I use these tools for "professional software engineering." I really desperately need LLMs to maintain extremely effective context and it's not actually that interesting to see a new model that's marginally better than the next one (for my day-to-day). However. Price is king. Allowing me to flood the context window with my code base is great, but given that the price has su…
Having spent a couple of weeks on Claude Code recently, I arrived to the conclusion that the net value for me from agentic AI is actually negative.
I will give it another run in 6-8 months though.
Re: Claude Sonnet 4 now supports 1M tokens of context
#30How does anyone send these models that much context without it tripping over itself? I can't get anywhere near that much before it starts losing track of instruction.
Right now I’m experimenting with using separate .plan files for tracking key instructions across domains like architecture and feature decisions.