cua-computer 0.1.25__tar.gz → 0.1.27__tar.gz
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.
- {cua_computer-0.1.25 → cua_computer-0.1.27}/PKG-INFO +1 -1
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/interface/macos.py +1 -1
- {cua_computer-0.1.25 → cua_computer-0.1.27}/pyproject.toml +3 -3
- {cua_computer-0.1.25 → cua_computer-0.1.27}/README.md +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/__init__.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/computer.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/interface/__init__.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/interface/base.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/interface/factory.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/interface/linux.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/interface/models.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/logger.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/models.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/telemetry.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/ui/__init__.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/ui/gradio/__init__.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/ui/gradio/app.py +0 -0
- {cua_computer-0.1.25 → cua_computer-0.1.27}/computer/utils.py +0 -0
@@ -523,7 +523,7 @@ class MacOSComputerInterface(BaseComputerInterface):
|
|
523
523
|
result = await self._send_command("get_accessibility_tree")
|
524
524
|
if not result.get("success", False):
|
525
525
|
raise RuntimeError(result.get("error", "Failed to get accessibility tree"))
|
526
|
-
return result
|
526
|
+
return result
|
527
527
|
|
528
528
|
async def get_active_window_bounds(self) -> Dict[str, int]:
|
529
529
|
"""Get the bounds of the currently active window."""
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
6
6
|
|
7
7
|
[project]
|
8
8
|
name = "cua-computer"
|
9
|
-
version = "0.1.
|
9
|
+
version = "0.1.27"
|
10
10
|
description = "Computer-Use Interface (CUI) framework powering Cua"
|
11
11
|
readme = "README.md"
|
12
12
|
authors = [
|
@@ -50,7 +50,7 @@ target-version = [
|
|
50
50
|
|
51
51
|
[tool.ruff]
|
52
52
|
line-length = 100
|
53
|
-
target-version = "0.1.
|
53
|
+
target-version = "0.1.27"
|
54
54
|
select = [
|
55
55
|
"E",
|
56
56
|
"F",
|
@@ -64,7 +64,7 @@ docstring-code-format = true
|
|
64
64
|
|
65
65
|
[tool.mypy]
|
66
66
|
strict = true
|
67
|
-
python_version = "0.1.
|
67
|
+
python_version = "0.1.27"
|
68
68
|
ignore_missing_imports = true
|
69
69
|
disallow_untyped_defs = true
|
70
70
|
check_untyped_defs = true
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|