cua-computer 0.2.6__tar.gz → 0.2.7__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.2.6 → cua_computer-0.2.7}/PKG-INFO +2 -2
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/base.py +2 -2
- {cua_computer-0.2.6 → cua_computer-0.2.7}/pyproject.toml +5 -5
- {cua_computer-0.2.6 → cua_computer-0.2.7}/README.md +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/__init__.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/computer.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/interface/__init__.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/interface/base.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/interface/factory.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/interface/linux.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/interface/macos.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/interface/models.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/logger.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/models.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/__init__.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/cloud/__init__.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/cloud/provider.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/factory.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/lume/__init__.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/lume/provider.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/lume_api.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/lumier/__init__.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/providers/lumier/provider.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/telemetry.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/ui/__init__.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/ui/gradio/__init__.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/ui/gradio/app.py +0 -0
- {cua_computer-0.2.6 → cua_computer-0.2.7}/computer/utils.py +0 -0
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cua-computer
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.7
|
4
4
|
Summary: Computer-Use Interface (CUI) framework powering Cua
|
5
5
|
Author-Email: TryCua <gh@trycua.com>
|
6
|
-
Requires-Python: >=3.
|
6
|
+
Requires-Python: >=3.11
|
7
7
|
Requires-Dist: pillow>=10.0.0
|
8
8
|
Requires-Dist: websocket-client>=1.8.0
|
9
9
|
Requires-Dist: websockets>=12.0
|
@@ -1,11 +1,11 @@
|
|
1
1
|
"""Base provider interface for VM backends."""
|
2
2
|
|
3
3
|
import abc
|
4
|
-
from enum import
|
4
|
+
from enum import StrEnum
|
5
5
|
from typing import Dict, List, Optional, Any, AsyncContextManager
|
6
6
|
|
7
7
|
|
8
|
-
class VMProviderType(
|
8
|
+
class VMProviderType(StrEnum):
|
9
9
|
"""Enum of supported VM provider types."""
|
10
10
|
LUME = "lume"
|
11
11
|
LUMIER = "lumier"
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
6
6
|
|
7
7
|
[project]
|
8
8
|
name = "cua-computer"
|
9
|
-
version = "0.2.
|
9
|
+
version = "0.2.7"
|
10
10
|
description = "Computer-Use Interface (CUI) framework powering Cua"
|
11
11
|
readme = "README.md"
|
12
12
|
authors = [
|
@@ -20,7 +20,7 @@ dependencies = [
|
|
20
20
|
"cua-core>=0.1.0,<0.2.0",
|
21
21
|
"pydantic>=2.11.1",
|
22
22
|
]
|
23
|
-
requires-python = ">=3.
|
23
|
+
requires-python = ">=3.11"
|
24
24
|
|
25
25
|
[project.optional-dependencies]
|
26
26
|
lume = []
|
@@ -52,12 +52,12 @@ source-includes = [
|
|
52
52
|
[tool.black]
|
53
53
|
line-length = 100
|
54
54
|
target-version = [
|
55
|
-
"
|
55
|
+
"py311",
|
56
56
|
]
|
57
57
|
|
58
58
|
[tool.ruff]
|
59
59
|
line-length = 100
|
60
|
-
target-version = "0.2.
|
60
|
+
target-version = "0.2.7"
|
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.2.
|
74
|
+
python_version = "0.2.7"
|
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
|