-
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
Fix: llm completion exception breaks CodeActAgent #3678
Conversation
… case of exception in llm completion
Thanks for working on this! |
What could be nice is to adapt the existing exception handling in llm.py's completion methods to disable the lenghty tracebacks, but include the messages from cascaded exceptions (it is a lot of "clutter" in the log with references outside of OpenHands' codebase). |
@tobitege I've created this PR to address the exception issue in LLM completion. I've used AgentFinish for this, as it seemed appropriate since the action type will be "finish" in case of any exception, with an updated message using the "thought" field. However, I'm wondering if we should create a new action like AgentError instead. What are your thoughts on this approach? |
As a message type I'd prefer the name to reflect that it is related to the LLM, like we have |
@tobitege Thanks for your comments, I will look into them. |
@tobitege I found that we can use LLMResponseError since any exception in the completion method is related to an LLM response. I’ve raised that exception directly from the completion method and made it return AgentFinishAction whenever it catches an LLMResponseError. I’ve updated my PR with these changes. Let me know if you have any questions or suggestions. |
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 think this should work, thank you!
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.
Thanks for your contribution! 👍
Short description of the problem this fixes or functionality that this introduces. This may be used for the CHANGELOG
This fixes the issue mentioned in #3575
Added a try catch block to catch any exception thrown by llm.completion.
Give a summary of what the PR does, explaining any non-trivial design decisions
I just added a try catch block to catch any exception, Also the step method needs to return and action, So I am returning the AgentFinishAction with an error message thought to inform user that there was some error and finish action allows the user to retry it or give a new input.
Link of any specific issues this addresses
#3575
Screen.Recording.2024-08-31.at.12.52.32.AM.mov