cua-computer 0.4.2__tar.gz → 0.4.3__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.4.2 → cua_computer-0.4.3}/PKG-INFO +1 -1
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/computer.py +5 -4
- {cua_computer-0.4.2 → cua_computer-0.4.3}/pyproject.toml +3 -3
- {cua_computer-0.4.2 → cua_computer-0.4.3}/README.md +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/diorama_computer.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/helpers.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/interface/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/interface/base.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/interface/factory.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/interface/generic.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/interface/linux.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/interface/macos.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/interface/models.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/interface/windows.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/logger.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/models.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/base.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/cloud/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/cloud/provider.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/docker/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/docker/provider.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/factory.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/lume/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/lume/provider.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/lume_api.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/lumier/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/lumier/provider.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/winsandbox/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/winsandbox/provider.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/providers/winsandbox/setup_script.ps1 +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/telemetry.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/ui/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/ui/__main__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/ui/gradio/__init__.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/ui/gradio/app.py +0 -0
- {cua_computer-0.4.2 → cua_computer-0.4.3}/computer/utils.py +0 -0
@@ -88,10 +88,11 @@ class Computer:
|
|
88
88
|
self.logger = Logger("computer", verbosity)
|
89
89
|
self.logger.info("Initializing Computer...")
|
90
90
|
|
91
|
-
if
|
92
|
-
|
93
|
-
|
94
|
-
|
91
|
+
if not image:
|
92
|
+
if os_type == "macos":
|
93
|
+
image = "macos-sequoia-cua:latest"
|
94
|
+
elif os_type == "linux":
|
95
|
+
image = "trycua/cua-ubuntu:latest"
|
95
96
|
image = str(image)
|
96
97
|
|
97
98
|
# Store original parameters
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
6
6
|
|
7
7
|
[project]
|
8
8
|
name = "cua-computer"
|
9
|
-
version = "0.4.
|
9
|
+
version = "0.4.3"
|
10
10
|
description = "Computer-Use Interface (CUI) framework powering Cua"
|
11
11
|
readme = "README.md"
|
12
12
|
authors = [
|
@@ -57,7 +57,7 @@ target-version = [
|
|
57
57
|
|
58
58
|
[tool.ruff]
|
59
59
|
line-length = 100
|
60
|
-
target-version = "0.4.
|
60
|
+
target-version = "0.4.3"
|
61
61
|
select = [
|
62
62
|
"E",
|
63
63
|
"F",
|
@@ -71,7 +71,7 @@ docstring-code-format = true
|
|
71
71
|
|
72
72
|
[tool.mypy]
|
73
73
|
strict = true
|
74
|
-
python_version = "0.4.
|
74
|
+
python_version = "0.4.3"
|
75
75
|
ignore_missing_imports = true
|
76
76
|
disallow_untyped_defs = true
|
77
77
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|