From 1ddc32cda2b98ee056bfc0da073ebab3056a7226 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Mon, 12 May 2025 09:07:29 -0400 Subject: [PATCH 1/2] Add missing datasets dep (#171) --- libs/computer/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/computer/pyproject.toml b/libs/computer/pyproject.toml index ed438947..22465082 100644 --- a/libs/computer/pyproject.toml +++ b/libs/computer/pyproject.toml @@ -25,6 +25,7 @@ requires-python = ">=3.10" ui = [ "gradio>=5.23.3,<6.0.0", "python-dotenv>=1.0.1,<2.0.0", + "datasets>=3.6.0,<4.0.0", ] [tool.pdm] From 5fa3b66bac7e13643c926b01a1e894cd5ad648f6 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Tue, 13 May 2025 16:04:56 -0400 Subject: [PATCH 2/2] Fixed missing indent --- libs/agent/agent/providers/omni/loop.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/agent/agent/providers/omni/loop.py b/libs/agent/agent/providers/omni/loop.py index 840b2916..751d4fd3 100644 --- a/libs/agent/agent/providers/omni/loop.py +++ b/libs/agent/agent/providers/omni/loop.py @@ -749,9 +749,9 @@ class OmniLoop(BaseLoop): # Create a brief delay before retrying await asyncio.sleep(1) - finally: - # Signal that we're done - await queue.put(None) + finally: + # Signal that we're done + await queue.put(None) async def cancel(self) -> None: """Cancel the currently running agent loop task.