Add CLIRuntime implementation for local command execution (#8264)

Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
Co-authored-by: Engel Nyst <engel.nyst@gmail.com>
This commit is contained in:
Robert Brennan
2025-05-22 23:03:22 -04:00
committed by GitHub
parent f7cdf4720f
commit 50d4c79094
39 changed files with 1564 additions and 138 deletions

View File

@@ -401,9 +401,6 @@ class AgentController:
if hasattr(event, 'hidden') and event.hidden:
return
# Give others a little chance
await asyncio.sleep(0.01)
# if the event is not filtered out, add it to the history
if not any(isinstance(event, filter_type) for filter_type in self.filter_out):
self.state.history.append(event)