OpenAI reduces Codex Model Context Size from 372k to 272k
41–50 of 194 posts
Re: OpenAI reduces Codex Model Context Size from 372k to 272k
#42Re: OpenAI reduces Codex Model Context Size from 372k to 272k
#43I know a lot of people like to say that compaction makes this moot, but the level of detail you lose across compaction is wildly too much for most things that I do, unfortunately. Perhaps if your plans don't have as much detail, or if you're not, for example, having a discussion with a lot of nitty-gritty then it's fine? The lack of long context is the main reason that I still end up using Anthropic. The worst is whe…
I agree. Compaction sucks, so I made tools that let the LLM selectively delete (and recall if needed) chunks of its context. You might want to try context bonsai if you're routinely hitting the auto-compaction wall. https://github.com/Vibecodelicious/context-bonsai-agents
P.S. Love the "bonsai" name btw!
Re: OpenAI reduces Codex Model Context Size from 372k to 272k
#44Earlier quoted context omitted.
I agree. Compaction sucks, so I made tools that let the LLM selectively delete (and recall if needed) chunks of its context. You might want to try context bonsai if you're routinely hitting the auto-compaction wall. https://github.com/Vibecodelicious/context-bonsai-agents
I have a hunch that OpenAIs proprietary compaction endpoint actually does something similar on the backend.
So... at least as of a week ago or so, I don't believe so.
Re: OpenAI reduces Codex Model Context Size from 372k to 272k
#45Re: OpenAI reduces Codex Model Context Size from 372k to 272k
#46I know a lot of people like to say that compaction makes this moot, but the level of detail you lose across compaction is wildly too much for most things that I do, unfortunately. Perhaps if your plans don't have as much detail, or if you're not, for example, having a discussion with a lot of nitty-gritty then it's fine? The lack of long context is the main reason that I still end up using Anthropic. The worst is whe…
What plan are you on? With Anthropic I run out of quota very fast on a Pro plan with long contexts. Is long context primarily for Max tier or for API usage? Or are there special ways of working with long context on a Pro plan?
Re: OpenAI reduces Codex Model Context Size from 372k to 272k
#47I know a lot of people like to say that compaction makes this moot, but the level of detail you lose across compaction is wildly too much for most things that I do, unfortunately. Perhaps if your plans don't have as much detail, or if you're not, for example, having a discussion with a lot of nitty-gritty then it's fine? The lack of long context is the main reason that I still end up using Anthropic. The worst is whe…
The best way around this for me is planning a project well ahead of time and using subagents to execute individual tasks while the primary agent acts as a PM.
Re: OpenAI reduces Codex Model Context Size from 372k to 272k
#48I know a lot of people like to say that compaction makes this moot, but the level of detail you lose across compaction is wildly too much for most things that I do, unfortunately. Perhaps if your plans don't have as much detail, or if you're not, for example, having a discussion with a lot of nitty-gritty then it's fine? The lack of long context is the main reason that I still end up using Anthropic. The worst is whe…
That seems quite different from my design process. I write a plan.md that goes through multiple revisions. The plan is the memory. Restarting and reading the plan again to do another review is a good way to get a different perspective.