cua-agent 0.2.6__py3-none-any.whl → 0.2.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cua-agent might be problematic. Click here for more details.
- agent/providers/anthropic/tools/computer.py +2 -8
- {cua_agent-0.2.6.dist-info → cua_agent-0.2.7.dist-info}/METADATA +1 -1
- {cua_agent-0.2.6.dist-info → cua_agent-0.2.7.dist-info}/RECORD +5 -5
- {cua_agent-0.2.6.dist-info → cua_agent-0.2.7.dist-info}/WHEEL +0 -0
- {cua_agent-0.2.6.dist-info → cua_agent-0.2.7.dist-info}/entry_points.txt +0 -0
|
@@ -478,17 +478,11 @@ class ComputerTool(BaseComputerTool, BaseAnthropicTool):
|
|
|
478
478
|
if direction == "down":
|
|
479
479
|
# Scroll down (Page Down on macOS)
|
|
480
480
|
self.logger.info(f"Scrolling down, amount: {amount}")
|
|
481
|
-
|
|
482
|
-
for _ in range(amount):
|
|
483
|
-
await self.computer.interface.hotkey("fn", "down")
|
|
484
|
-
await asyncio.sleep(0.1)
|
|
481
|
+
await self.computer.interface.scroll_down(amount)
|
|
485
482
|
else:
|
|
486
483
|
# Scroll up (Page Up on macOS)
|
|
487
484
|
self.logger.info(f"Scrolling up, amount: {amount}")
|
|
488
|
-
|
|
489
|
-
for _ in range(amount):
|
|
490
|
-
await self.computer.interface.hotkey("fn", "up")
|
|
491
|
-
await asyncio.sleep(0.1)
|
|
485
|
+
await self.computer.interface.scroll_up(amount)
|
|
492
486
|
|
|
493
487
|
# Wait briefly for UI changes
|
|
494
488
|
await asyncio.sleep(0.5)
|
|
@@ -32,7 +32,7 @@ agent/providers/anthropic/tools/__init__.py,sha256=JyZwuVtPUnZwRSZBSCdQv9yxbLCsy
|
|
|
32
32
|
agent/providers/anthropic/tools/base.py,sha256=WnRDbqO25tQzLpS2RU2ZXTLF5wd5IqU7SiyRAglQat4,2752
|
|
33
33
|
agent/providers/anthropic/tools/bash.py,sha256=QODuFjWuHM4GgGTqK2HizSyYqGqQwX70AdwrFiGSp2Q,2218
|
|
34
34
|
agent/providers/anthropic/tools/collection.py,sha256=RBK_6hxfHExR-EOxadiLl0OznmFj07nyIUjFgaYZ6Eo,960
|
|
35
|
-
agent/providers/anthropic/tools/computer.py,sha256=
|
|
35
|
+
agent/providers/anthropic/tools/computer.py,sha256=3MWMGOy_xDXOg5B7CvQDVNts2WQ9NcAyfzsLEMxt5ME,25627
|
|
36
36
|
agent/providers/anthropic/tools/edit.py,sha256=EGRP61MDA4Oue1D7Q-_vLpd6LdGbdBA1Z4HSZ66DbmI,13465
|
|
37
37
|
agent/providers/anthropic/tools/manager.py,sha256=yNvgTkfEqnOz5isDF0RxvmBMZB0uh2PipFEH-PUXpoY,2020
|
|
38
38
|
agent/providers/anthropic/tools/run.py,sha256=xhXdnBK1di9muaO44CEirL9hpGy3NmKbjfMpyeVmn8Y,1595
|
|
@@ -80,7 +80,7 @@ agent/telemetry.py,sha256=pVGxbj0ewnvq4EGj28CydN4a1iOfvZR_XKL3vIOqhOM,390
|
|
|
80
80
|
agent/ui/__init__.py,sha256=ohhxJLBin6k1hl5sKcmBST8mgh23WXgAXz3pN4f470E,45
|
|
81
81
|
agent/ui/gradio/__init__.py,sha256=ANKZhv1HqsLheWbLVBlyRQ7Q5qGeXuPi5jDs8vu-ZMo,579
|
|
82
82
|
agent/ui/gradio/app.py,sha256=StBehGfPJhE6ywnxU3CHDPkZrOm_2XMT1Npepf89G5c,70675
|
|
83
|
-
cua_agent-0.2.
|
|
84
|
-
cua_agent-0.2.
|
|
85
|
-
cua_agent-0.2.
|
|
86
|
-
cua_agent-0.2.
|
|
83
|
+
cua_agent-0.2.7.dist-info/METADATA,sha256=Jdz7v8P_JvHbN1vEcIyDzf2a51FUJQ5D4WJqL9cLbyA,12688
|
|
84
|
+
cua_agent-0.2.7.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
|
85
|
+
cua_agent-0.2.7.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
86
|
+
cua_agent-0.2.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|