cua-computer 0.1.29__py3-none-any.whl → 0.2.1__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.
- computer/__init__.py +5 -1
- computer/computer.py +268 -140
- computer/interface/factory.py +4 -1
- computer/interface/linux.py +595 -23
- computer/interface/macos.py +9 -1
- computer/models.py +17 -5
- computer/providers/__init__.py +4 -0
- computer/providers/base.py +105 -0
- computer/providers/cloud/__init__.py +5 -0
- computer/providers/cloud/provider.py +100 -0
- computer/providers/factory.py +118 -0
- computer/providers/lume/__init__.py +9 -0
- computer/providers/lume/provider.py +541 -0
- computer/providers/lume_api.py +559 -0
- computer/providers/lumier/__init__.py +8 -0
- computer/providers/lumier/provider.py +943 -0
- {cua_computer-0.1.29.dist-info → cua_computer-0.2.1.dist-info}/METADATA +7 -2
- cua_computer-0.2.1.dist-info/RECORD +29 -0
- cua_computer-0.1.29.dist-info/RECORD +0 -19
- {cua_computer-0.1.29.dist-info → cua_computer-0.2.1.dist-info}/WHEEL +0 -0
- {cua_computer-0.1.29.dist-info → cua_computer-0.2.1.dist-info}/entry_points.txt +0 -0
@@ -1,20 +1,25 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cua-computer
|
3
|
-
Version: 0.1
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: Computer-Use Interface (CUI) framework powering Cua
|
5
5
|
Author-Email: TryCua <gh@trycua.com>
|
6
6
|
Requires-Python: >=3.10
|
7
|
-
Requires-Dist: pylume>=0.1.8
|
8
7
|
Requires-Dist: pillow>=10.0.0
|
9
8
|
Requires-Dist: websocket-client>=1.8.0
|
10
9
|
Requires-Dist: websockets>=12.0
|
11
10
|
Requires-Dist: aiohttp>=3.9.0
|
12
11
|
Requires-Dist: cua-core<0.2.0,>=0.1.0
|
13
12
|
Requires-Dist: pydantic>=2.11.1
|
13
|
+
Provides-Extra: lume
|
14
|
+
Provides-Extra: lumier
|
14
15
|
Provides-Extra: ui
|
15
16
|
Requires-Dist: gradio<6.0.0,>=5.23.3; extra == "ui"
|
16
17
|
Requires-Dist: python-dotenv<2.0.0,>=1.0.1; extra == "ui"
|
17
18
|
Requires-Dist: datasets<4.0.0,>=3.6.0; extra == "ui"
|
19
|
+
Provides-Extra: all
|
20
|
+
Requires-Dist: gradio<6.0.0,>=5.23.3; extra == "all"
|
21
|
+
Requires-Dist: python-dotenv<2.0.0,>=1.0.1; extra == "all"
|
22
|
+
Requires-Dist: datasets<4.0.0,>=3.6.0; extra == "all"
|
18
23
|
Description-Content-Type: text/markdown
|
19
24
|
|
20
25
|
<div align="center">
|
@@ -0,0 +1,29 @@
|
|
1
|
+
computer/__init__.py,sha256=QOxNrrJAuLRnsUC2zIFgRfzVSuDSXiYHlEF-9vkhV0o,1241
|
2
|
+
computer/computer.py,sha256=zOc2cqZeDLKygNFuNCLn7FPBm5_dYHJqYBChV0TscK0,30626
|
3
|
+
computer/interface/__init__.py,sha256=xQvYjq5PMn9ZJOmRR5mWtONTl_0HVd8ACvW6AQnzDdw,262
|
4
|
+
computer/interface/base.py,sha256=uRF2AfF3dbpOmvzZ55JgODpNC6LiudfhK8KCf5v7uUw,5771
|
5
|
+
computer/interface/factory.py,sha256=2zUgFTKbhGqDbFKAcpOu47sDYmi4qidHegSQbfEAg1A,1159
|
6
|
+
computer/interface/linux.py,sha256=5CyC0o-XR-TcelB5MPdzL20qSrT0C8kFYJxDupY3MWI,25350
|
7
|
+
computer/interface/macos.py,sha256=WiK8hkJJwb6E6hFOMO30HVs6S2qSsPMM6f47cFj19OQ,25350
|
8
|
+
computer/interface/models.py,sha256=RZKVUdwKrKUoFqwlx2Dk8Egkmq_AInlIu_d0xg7SZzw,3238
|
9
|
+
computer/logger.py,sha256=UVvnmZGOWVF9TCsixEbeQnDZ3wBPAJ2anW3Zp-MoJ8Y,2896
|
10
|
+
computer/models.py,sha256=iFNM1QfZArD8uf66XJXb2EDIREsfrxqqA5_liLBMfrE,1188
|
11
|
+
computer/providers/__init__.py,sha256=hS9lLxmmHa1u82XJJ_xuqSKipClsYUEPx-8OK9ogtVg,194
|
12
|
+
computer/providers/base.py,sha256=pUrM5aVBSUQS2TbfoiyMkNz20dWN7-F_aEjSf8EiJRc,3623
|
13
|
+
computer/providers/cloud/__init__.py,sha256=SDAcfhI2BlmVBrBZOHxQd3i1bJZjMIfl7QgmqjXa4z8,144
|
14
|
+
computer/providers/cloud/provider.py,sha256=Cgjb7vFMk4OxG8TKOMYWO8v3v1s7WtWXppNwQRm97Cw,3523
|
15
|
+
computer/providers/factory.py,sha256=FskJGkdhl_arlGr2wd_e4Adi_L14VTkvPTK2gTuUhT0,4731
|
16
|
+
computer/providers/lume/__init__.py,sha256=E6hTbVQF5lLZD8JyG4rTwUnCBO4q9K8UkYNQ31R0h7c,193
|
17
|
+
computer/providers/lume/provider.py,sha256=grLZeXd4Y8iYsNq2gfNGcQq1bnTcNYNepEv-mxmROG4,20562
|
18
|
+
computer/providers/lume_api.py,sha256=qLYFYdWtWVxWjMq8baiqlIW2EUaen4Gl2Tc1Qr_QEig,20196
|
19
|
+
computer/providers/lumier/__init__.py,sha256=qz8coMA2K5MVoqNC12SDXJe6lI7z2pn6RHssUOMY5Ug,212
|
20
|
+
computer/providers/lumier/provider.py,sha256=qBhaI_AFeS2ksLp8gHpHyts_HHSG8TduT6dPfBQ29hA,46547
|
21
|
+
computer/telemetry.py,sha256=FvNFpxgeRuCMdNpREuSL7bOMZy9gSzY4J0rLeNDw0CU,3746
|
22
|
+
computer/ui/__init__.py,sha256=pmo05ek9qiB_x7DPeE6Vf_8RsIOqTD0w1dBLMHfoOnY,45
|
23
|
+
computer/ui/gradio/__init__.py,sha256=5_KimixM48-X74FCsLw7LbSt39MQfUMEL8-M9amK3Cw,117
|
24
|
+
computer/ui/gradio/app.py,sha256=IU4gmvXvUxJxt1MSAMT6bfNC2YjT_JQbQ0M60bLygMs,64086
|
25
|
+
computer/utils.py,sha256=zY50NXB7r51GNLQ6l7lhG_qv0_ufpQ8n0-SDhCei8m4,2838
|
26
|
+
cua_computer-0.2.1.dist-info/METADATA,sha256=GWVENklYmRbA3s69dj34Jxh-TJtobQhpt4vPwyxmpNY,5837
|
27
|
+
cua_computer-0.2.1.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
28
|
+
cua_computer-0.2.1.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
29
|
+
cua_computer-0.2.1.dist-info/RECORD,,
|
@@ -1,19 +0,0 @@
|
|
1
|
-
computer/__init__.py,sha256=_FvOJ5EmGErcPfmmHsIYTOPC7fz8jcMZJOMJUg2zd0I,1139
|
2
|
-
computer/computer.py,sha256=GB7EaZ9i4YQMXQ37jwMlK8Vxo387TTLQiHOkXUSw0vE,23712
|
3
|
-
computer/interface/__init__.py,sha256=xQvYjq5PMn9ZJOmRR5mWtONTl_0HVd8ACvW6AQnzDdw,262
|
4
|
-
computer/interface/base.py,sha256=uRF2AfF3dbpOmvzZ55JgODpNC6LiudfhK8KCf5v7uUw,5771
|
5
|
-
computer/interface/factory.py,sha256=7Sczbmgu7Zlf9QfmhxOe_wFawRSPpvwd2dLSA4asDs0,1028
|
6
|
-
computer/interface/linux.py,sha256=0Kc_vkPnEUlKUcVYMycbxiuKyZOpOPwwmUcFJbFmopE,817
|
7
|
-
computer/interface/macos.py,sha256=tEzDTHkj1k76LTCq-BdJ6IhWpBhw5VkhtPG6WOTtPEY,25153
|
8
|
-
computer/interface/models.py,sha256=RZKVUdwKrKUoFqwlx2Dk8Egkmq_AInlIu_d0xg7SZzw,3238
|
9
|
-
computer/logger.py,sha256=UVvnmZGOWVF9TCsixEbeQnDZ3wBPAJ2anW3Zp-MoJ8Y,2896
|
10
|
-
computer/models.py,sha256=6chs4wxMpWdVhsOETeaGqFFI3feBmSyLIC8l5EJDq5g,780
|
11
|
-
computer/telemetry.py,sha256=FvNFpxgeRuCMdNpREuSL7bOMZy9gSzY4J0rLeNDw0CU,3746
|
12
|
-
computer/ui/__init__.py,sha256=pmo05ek9qiB_x7DPeE6Vf_8RsIOqTD0w1dBLMHfoOnY,45
|
13
|
-
computer/ui/gradio/__init__.py,sha256=5_KimixM48-X74FCsLw7LbSt39MQfUMEL8-M9amK3Cw,117
|
14
|
-
computer/ui/gradio/app.py,sha256=IU4gmvXvUxJxt1MSAMT6bfNC2YjT_JQbQ0M60bLygMs,64086
|
15
|
-
computer/utils.py,sha256=zY50NXB7r51GNLQ6l7lhG_qv0_ufpQ8n0-SDhCei8m4,2838
|
16
|
-
cua_computer-0.1.29.dist-info/METADATA,sha256=OrJdkx9T-lnRH-K2DNswS4J6K8LqhlOKpr3QfTCSOcE,5637
|
17
|
-
cua_computer-0.1.29.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
18
|
-
cua_computer-0.1.29.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
19
|
-
cua_computer-0.1.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|