Carlos Freund
Carlos Freund
> We may have another option if so, though: we could also try to add to the prompt (system or instruction), as information about a future event, e.g. > >...
With claude3.7 it works for me. Just to be clear. We are talking about the status botton left not turning yellow and showing "Rate Limited" right? For you it shows...
The rate-limit error is set here https://github.com/All-Hands-AI/OpenHands/blob/main/openhands/controller/agent_controller.py#L253 ``` elif isinstance(e, RateLimitError): await self.set_agent_state_to(AgentState.RATE_LIMITED) return ``` That might not always work. The exception is thrown from We should catch any of...
Can you try to use this branch: https://github.com/All-Hands-AI/OpenHands/pull/7970
Yes, the original post refers a `RateLimitError`. But that would have worked. I assume, the reason we have LLM_RETRY_EXCEPTIONS with for example `InternalServerError` is that sometimes I have seen Claude...
# LLM Context Condensation and Cache ## Context I have started to be able to get stuff done with OpenHands + Claude 3.7. But one thing that keeps happening, is...
@enyst @csmith49 I would love your feedback on this, as I have seen you are familiar with the codebase.
> Just curious, does this still happen? That is, running in debug mode, after the first condensation, do we still see in the logs that _some_ caching was applied or...
Wait with your evaluation @csmith49 The current condensation is buggy. The wrong events are being removed, because I assumed the list of events to match the list of messages, which...
@csmith49 I think now its worth trying to get it to run. Put this in the config.toml ``` [agent.CodeActAgent.condenser] type = "agentcache" trigger_word = "!CONDENSE!" max_size = 50 ``` I...