cua-computer 0.3.7__tar.gz → 0.4.1__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.3.7 → cua_computer-0.4.1}/PKG-INFO +1 -1
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/ui/gradio/app.py +1 -1
- {cua_computer-0.3.7 → cua_computer-0.4.1}/pyproject.toml +3 -3
- {cua_computer-0.3.7 → cua_computer-0.4.1}/README.md +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/computer.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/diorama_computer.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/helpers.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/interface/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/interface/base.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/interface/factory.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/interface/generic.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/interface/linux.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/interface/macos.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/interface/models.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/interface/windows.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/logger.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/models.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/base.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/cloud/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/cloud/provider.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/factory.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/lume/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/lume/provider.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/lume_api.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/lumier/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/lumier/provider.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/winsandbox/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/winsandbox/provider.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/providers/winsandbox/setup_script.ps1 +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/telemetry.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/ui/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/ui/__main__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/ui/gradio/__init__.py +0 -0
- {cua_computer-0.3.7 → cua_computer-0.4.1}/computer/utils.py +0 -0
@@ -302,7 +302,7 @@ def upload_to_huggingface(dataset_name, visibility, filter_tags=None):
|
|
302
302
|
)
|
303
303
|
card = DatasetCard.from_template(
|
304
304
|
card_data=card_data,
|
305
|
-
template_str="---\n{{ card_data }}\n---\n\n# Uploaded computer interface trajectories\n\nThese trajectories were generated and uploaded using [
|
305
|
+
template_str="---\n{{ card_data }}\n---\n\n# Uploaded computer interface trajectories\n\nThese trajectories were generated and uploaded using [cua](https://github.com/trycua/cua)"
|
306
306
|
)
|
307
307
|
card.push_to_hub(
|
308
308
|
dataset_name,
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
6
6
|
|
7
7
|
[project]
|
8
8
|
name = "cua-computer"
|
9
|
-
version = "0.
|
9
|
+
version = "0.4.1"
|
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.
|
60
|
+
target-version = "0.4.1"
|
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.
|
74
|
+
python_version = "0.4.1"
|
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
|