-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Hotfix): Track reason for Error AgentState #7584
Conversation
@OpenHands please take a look at the agent states, we want to make it so that Maybe start by just adding a reason field to |
I'm on it! @malhotra5 can track my progress at all-hands.dev |
I've successfully implemented the requested changes to add a reason field to
These changes ensure that when an agent enters the ERROR state, the reason for the error is captured and included in the state change observation. This will allow the UI or other components to display more detailed error information to users. The changes have been committed and pushed to the |
@OpenHands please fix the failing lint issue in the backend |
I'm on it! @malhotra5 can track my progress at all-hands.dev |
I fixed the failing lint issues in the backend code for PR #7584 on the
All pre-commit checks now pass for the modified files, which should resolve the failing lint issue mentioned in the PR comment. |
Is |
@@ -228,11 +228,14 @@ async def _react_to_exception( | |||
e: Exception, | |||
): | |||
"""React to an exception by setting the agent state to error and sending a status message.""" | |||
await self.set_agent_state_to(AgentState.ERROR) | |||
# Store the error reason before setting the agent state | |||
self.state.last_error = f'{type(e).__name__}: {str(e)}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love the solution overall, we just may want to check if this works with evals, because they use state.last_error
with some particular expectations for some errors:
https://github.com/search?q=repo%3AAll-Hands-AI%2FOpenHands%20last_error&type=code
At a look, I'd say it's fine - there's a function that cares about the exception name, and it seems we're setting it here anyway, and we're changing it only for a handful below?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm good point, it looks like we're just saving the last error msg for eval outputs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there's a function that cares about the exception name
I can't seem to find this; I only see the following
- Callback functions that want to set the
last_error
attrib to agent state - Evals + resolver that want to store
last_error
in their outputs
In this case I think this PR should be good to go
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, and this one:
OpenHands/evaluation/utils/shared.py
Line 523 in 648c8ff
def is_fatal_evaluation_error(error: str | None) -> bool: |
Seems okay, the PR doesn't change those?
Edited to add: it comes from here, using last_error:
if is_fatal_evaluation_error(state.last_error): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah thanks a bunch for linking this, it gives me peace of mind!
Yes this PR doesn't change those error messages
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You actually make a very good point, this is not straightforward to find, and since we start using last_error
, we will modify it sooner or later. Maybe a comment on the eval usage would help in the future?
Co-authored-by: openhands <[email protected]>
End-user friendly description of the problem this fixes or functionality that this introduces.
Give a summary of what the PR does, explaining any non-trivial design decisions.
This PR adds a new AgentState
BUDGET_EXCEEDED
when the user has ran out of LLM credits.While we're due to simplifying the agent states, this is a simpler and fast option. This will also enable us to inform the user that they have ran out of budget when running cloud resolver.
Link of any specific issues this addresses.
Closes All-Hands-AI/openhands-cloud#16
To run this PR locally, use the following command: