Skip to content
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

Merged
merged 6 commits into from
Sep 4, 2024

Conversation

shubhamofbce
Copy link
Contributor

@shubhamofbce shubhamofbce commented Aug 30, 2024

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

@shubhamofbce shubhamofbce marked this pull request as draft August 30, 2024 19:07
@tobitege
Copy link
Collaborator

Thanks for working on this!

@tobitege tobitege added enhancement New feature or request agent quality Related to the agent quality severity:medium Affecting multiple users labels Aug 30, 2024
@tobitege
Copy link
Collaborator

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).

@shubhamofbce
Copy link
Contributor Author

@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?

@tobitege
Copy link
Collaborator

tobitege commented Aug 30, 2024

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 LLMResponseError already (openhands/core/exceptions.py).
Maybe first look into that before creating a new one?

@shubhamofbce
Copy link
Contributor Author

@tobitege Thanks for your comments, I will look into them.

@shubhamofbce
Copy link
Contributor Author

@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.

@shubhamofbce shubhamofbce marked this pull request as ready for review September 3, 2024 18:08
Copy link
Collaborator

@tobitege tobitege left a 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!

Copy link
Collaborator

@tobitege tobitege left a 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! 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
agent quality Related to the agent quality enhancement New feature or request severity:medium Affecting multiple users
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants