Robert Brennan

Results 1265 comments of Robert Brennan

Let's try again. @OpenHands please fix the lint errors

@OpenHands please fix the lint errors

@OpenHands stop being lazy 😛

@openhands the lint github action and unit test github action are failing. Please look at those actions and find the commands to run. Run them, verify the failures, fix them,...

@mamoodi yeah it's just a matter of the tests

I have fixed the failing lint and unit tests: 1. Fixed the lint error by removing an unused import in `openhands/agenthub/__init__.py` 2. Fixed the import in `openhands/core/setup.py` to use the...

@openhands fix this error ``` tests/runtime/test_stress_remote_runtime.py:36: in from openhands.agenthub import Agent E ImportError: cannot import name 'Agent' from 'openhands.agenthub' (/home/runner/work/OpenHands/OpenHands/openhands/agenthub/__init__.py) ```

I have fixed the import error by adding the `Agent` class export in `openhands/agenthub/__init__.py`. The `Agent` class was defined in `openhands/controller/agent.py` but was not being exported through the `agenthub` module....

@openhands fix the merge conflicts

I have resolved the merge conflicts by removing the `tests/unit/test_micro_agents.py` file, which aligns with the PR goal of removing old microagents. The file was deleted in our branch but modified...