|
|
|
|
|
by deepdarkforest
252 days ago
|
|
Context editing is interesting because most agents work on the assumption that KV cache is the most important thing to optimise and are very hesitant to remove parts of the context during work. It also sometimes introduces hallucinations, because parts of the context are with the assumption that eg tool results are there, but theyre not. Example Manus [0]. Eg, read file A, make changes on A. Then prompt on some more changes. If you now remove the "read file A" tool results, not only you break the cache, but in my own agent implementations(on gpt 5 at least) can hallucinate now since my prompt etc all naturally point to the content of the tool still beeing there. Plus, the model got trained and RLed with a continuous context, except if they now tune it with messing with the context as well. https://manus.im/blog/Context-Engineering-for-AI-Agents-Less... |
|