Merge branch 'main' into feature/computer/extensions

This commit is contained in:
Dillon DuPont
2025-05-13 16:06:00 -04:00
2 changed files with 4 additions and 3 deletions

View File

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

View File

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