External Publication
Visit Post

The OpenAI API unlocked a whole new layer of building for me

OpenAI Developer Community May 3, 2026
Source
That is exactly the part I ended up spending the most time thinking about. For me, it is not fully manual, but I also would not trust a plain vector search or an LLM on its own to decide everything. The way I think about it is pretty simple: the current task decides what kind of context is needed first. Then the runtime builds a small working view from the durable project state, the current run state, recent events, saved summaries, and any relevant files or artifacts. Retrieval can help find candidates, and the model can help reason over them, but I still want the runtime to be in charge of what actually enters the prompt. So the model is not carrying the memory. It is working inside a temporary view of the memory. After each step, anything important gets written back into durable state, so the next step can continue without replaying the whole history again. That separation has been the biggest unlock for me: the model reasons, but the runtime owns the memory, state, limits, and continuation logic.

Discussion in the ATmosphere

Loading comments...