cua-agent 0.4.34__py3-none-any.whl → 0.4.35__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.

Potentially problematic release.


This version of cua-agent might be problematic. Click here for more details.

Files changed (61) hide show
  1. agent/__init__.py +4 -10
  2. agent/__main__.py +2 -1
  3. agent/adapters/huggingfacelocal_adapter.py +54 -61
  4. agent/adapters/human_adapter.py +116 -114
  5. agent/adapters/mlxvlm_adapter.py +110 -99
  6. agent/adapters/models/__init__.py +14 -6
  7. agent/adapters/models/generic.py +7 -4
  8. agent/adapters/models/internvl.py +66 -30
  9. agent/adapters/models/opencua.py +23 -8
  10. agent/adapters/models/qwen2_5_vl.py +7 -4
  11. agent/agent.py +184 -158
  12. agent/callbacks/__init__.py +4 -4
  13. agent/callbacks/base.py +45 -31
  14. agent/callbacks/budget_manager.py +22 -10
  15. agent/callbacks/image_retention.py +18 -13
  16. agent/callbacks/logging.py +55 -42
  17. agent/callbacks/operator_validator.py +3 -1
  18. agent/callbacks/pii_anonymization.py +19 -16
  19. agent/callbacks/telemetry.py +67 -61
  20. agent/callbacks/trajectory_saver.py +90 -70
  21. agent/cli.py +115 -110
  22. agent/computers/__init__.py +13 -8
  23. agent/computers/base.py +26 -17
  24. agent/computers/cua.py +27 -23
  25. agent/computers/custom.py +72 -69
  26. agent/decorators.py +23 -14
  27. agent/human_tool/__init__.py +2 -7
  28. agent/human_tool/__main__.py +6 -2
  29. agent/human_tool/server.py +48 -37
  30. agent/human_tool/ui.py +235 -185
  31. agent/integrations/hud/__init__.py +15 -21
  32. agent/integrations/hud/agent.py +101 -83
  33. agent/integrations/hud/proxy.py +90 -57
  34. agent/loops/__init__.py +25 -21
  35. agent/loops/anthropic.py +537 -483
  36. agent/loops/base.py +13 -14
  37. agent/loops/composed_grounded.py +135 -149
  38. agent/loops/gemini.py +31 -12
  39. agent/loops/glm45v.py +135 -133
  40. agent/loops/gta1.py +47 -50
  41. agent/loops/holo.py +4 -2
  42. agent/loops/internvl.py +6 -11
  43. agent/loops/moondream3.py +36 -12
  44. agent/loops/omniparser.py +212 -209
  45. agent/loops/openai.py +49 -50
  46. agent/loops/opencua.py +29 -41
  47. agent/loops/qwen.py +475 -0
  48. agent/loops/uitars.py +237 -202
  49. agent/proxy/examples.py +54 -50
  50. agent/proxy/handlers.py +27 -34
  51. agent/responses.py +330 -330
  52. agent/types.py +11 -5
  53. agent/ui/__init__.py +1 -1
  54. agent/ui/__main__.py +1 -1
  55. agent/ui/gradio/app.py +23 -18
  56. agent/ui/gradio/ui_components.py +310 -161
  57. {cua_agent-0.4.34.dist-info → cua_agent-0.4.35.dist-info}/METADATA +18 -10
  58. cua_agent-0.4.35.dist-info/RECORD +64 -0
  59. cua_agent-0.4.34.dist-info/RECORD +0 -63
  60. {cua_agent-0.4.34.dist-info → cua_agent-0.4.35.dist-info}/WHEEL +0 -0
  61. {cua_agent-0.4.34.dist-info → cua_agent-0.4.35.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cua-agent
3
- Version: 0.4.34
3
+ Version: 0.4.35
4
4
  Summary: CUA (Computer Use) Agent for AI-driven computer interaction
5
5
  Author-Email: TryCua <gh@trycua.com>
6
6
  Requires-Python: >=3.12
@@ -18,6 +18,10 @@ Requires-Dist: certifi>=2024.2.2
18
18
  Requires-Dist: litellm>=1.74.12
19
19
  Provides-Extra: openai
20
20
  Provides-Extra: anthropic
21
+ Provides-Extra: qwen
22
+ Requires-Dist: qwen-vl-utils; extra == "qwen"
23
+ Requires-Dist: qwen-agent; extra == "qwen"
24
+ Requires-Dist: Pillow>=10.0.0; extra == "qwen"
21
25
  Provides-Extra: omni
22
26
  Requires-Dist: cua-som<0.2.0,>=0.1.0; extra == "omni"
23
27
  Provides-Extra: uitars
@@ -34,7 +38,7 @@ Requires-Dist: transformers-v4.55.0-GLM-4.5V-preview; extra == "glm45v-hf"
34
38
  Provides-Extra: opencua-hf
35
39
  Requires-Dist: accelerate; extra == "opencua-hf"
36
40
  Requires-Dist: torch; extra == "opencua-hf"
37
- Requires-Dist: transformers==4.53.0; extra == "opencua-hf"
41
+ Requires-Dist: transformers>=4.53.0; extra == "opencua-hf"
38
42
  Requires-Dist: tiktoken>=0.11.0; extra == "opencua-hf"
39
43
  Requires-Dist: blobfile>=3.0.0; extra == "opencua-hf"
40
44
  Provides-Extra: internvl-hf
@@ -70,6 +74,9 @@ Requires-Dist: python-dotenv>=1.0.1; extra == "all"
70
74
  Requires-Dist: yaspin>=3.1.0; extra == "all"
71
75
  Requires-Dist: hud-python==0.4.52; extra == "all"
72
76
  Requires-Dist: google-genai>=1.41.0; extra == "all"
77
+ Requires-Dist: qwen-vl-utils; extra == "all"
78
+ Requires-Dist: qwen-agent; extra == "all"
79
+ Requires-Dist: Pillow>=10.0.0; extra == "all"
73
80
  Description-Content-Type: text/markdown
74
81
 
75
82
  <div align="center">
@@ -82,10 +89,11 @@ Description-Content-Type: text/markdown
82
89
  </picture>
83
90
  </div>
84
91
 
85
- [![Python](https://img.shields.io/badge/Python-333333?logo=python&logoColor=white&labelColor=333333)](#)
86
- [![macOS](https://img.shields.io/badge/macOS-000000?logo=apple&logoColor=F0F0F0)](#)
87
- [![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white)](https://discord.com/invite/mVnXXpdE85)
88
- [![PyPI](https://img.shields.io/pypi/v/cua-computer?color=333333)](https://pypi.org/project/cua-computer/)
92
+ [![Python](https://img.shields.io/badge/Python-333333?logo=python&logoColor=white&labelColor=333333)](#)
93
+ [![macOS](https://img.shields.io/badge/macOS-000000?logo=apple&logoColor=F0F0F0)](#)
94
+ [![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?&logo=discord&logoColor=white)](https://discord.com/invite/mVnXXpdE85)
95
+ [![PyPI](https://img.shields.io/pypi/v/cua-computer?color=333333)](https://pypi.org/project/cua-computer/)
96
+
89
97
  </h1>
90
98
  </div>
91
99
 
@@ -121,7 +129,7 @@ async def main():
121
129
  name=os.getenv("CUA_CONTAINER_NAME"),
122
130
  api_key=os.getenv("CUA_API_KEY")
123
131
  ) as computer:
124
-
132
+
125
133
  # Create agent
126
134
  agent = ComputerAgent(
127
135
  model="anthropic/claude-3-5-sonnet-20241022",
@@ -130,10 +138,10 @@ async def main():
130
138
  trajectory_dir="trajectories",
131
139
  max_trajectory_budget=5.0 # $5 budget limit
132
140
  )
133
-
141
+
134
142
  # Run agent
135
143
  messages = [{"role": "user", "content": "Take a screenshot and tell me what you see"}]
136
-
144
+
137
145
  async for result in agent.run(messages):
138
146
  for item in result["output"]:
139
147
  if item["type"] == "message":
@@ -158,4 +166,4 @@ if __name__ == "__main__":
158
166
 
159
167
  ## License
160
168
 
161
- MIT License - see LICENSE file for details.
169
+ MIT License - see LICENSE file for details.
@@ -0,0 +1,64 @@
1
+ agent/__init__.py,sha256=zaQexECXUaHLjkkkS166vXBLV6gMcKC2ssL3nCfJ2wA,1250
2
+ agent/__main__.py,sha256=hD-1r72Evv3eJ7v6RhuU2vpusqxx-thbdrK5_iZGD-I,539
3
+ agent/adapters/__init__.py,sha256=Q_OxxwXBcBIetQ_DtHS5bwZWXrvCKPX2grCg8R0UKek,301
4
+ agent/adapters/huggingfacelocal_adapter.py,sha256=dL9fuDNC3MaA67DQye5UT-Sq-gmD9_2NIS5UTWLlSjU,6641
5
+ agent/adapters/human_adapter.py,sha256=SWUYgJZ_o8_5qw6uuXEahBPeHQ2fCLrTrM7U1PhQta8,12548
6
+ agent/adapters/mlxvlm_adapter.py,sha256=n8Amj8RPmdnUHVZUW-HfwsLEqakrkwMp6KnwQKTHyAE,14277
7
+ agent/adapters/models/__init__.py,sha256=aojUJzqd02Zo0u4VdTgOiAWAxyzwjTrn-FuCAsAoBEs,1474
8
+ agent/adapters/models/generic.py,sha256=qwhJXc8v9s44x1r0RnlTCjAIl862pwx33OEhyfwc72Y,2782
9
+ agent/adapters/models/internvl.py,sha256=8V5l-A7sR43oePcCLdWL9p9BWS65tKW0jtCzS_Hc-Ls,11766
10
+ agent/adapters/models/opencua.py,sha256=KziBcGQl4fJ4ad-sdQeHqFP_Ez4hzJWxcMou-cBLAOI,4083
11
+ agent/adapters/models/qwen2_5_vl.py,sha256=QzZawBxA_yLmqcG2rTtrQtWkKubyI9Oik5Lv2FUyQlw,2823
12
+ agent/agent.py,sha256=eCyqsSpwtWZF60LpYNKXExhI9YKhAJ_pZ1VMkQ0dYJI,30020
13
+ agent/callbacks/__init__.py,sha256=4goIHnj3nbFmE6BlAt1UdN6M0I3OCP6dQ0d2lZc80mA,724
14
+ agent/callbacks/base.py,sha256=onbJlS6HzgptBYfvPIDe8-PWK71Zr3mFaGVUyupNwCo,4622
15
+ agent/callbacks/budget_manager.py,sha256=RQ0P4s-w6xvtLQsIxgZ5n-ocfcYnqljSlGftmG1cVk8,1899
16
+ agent/callbacks/image_retention.py,sha256=qWe_XLyisvZVYn-_WHyIgHSpcxdqdS0tJKI4ZvVyEXI,3578
17
+ agent/callbacks/logging.py,sha256=MNbWH3DxSkI7RZJ-BAwr6lCClXVDNM6864wNA2TAQ6g,10855
18
+ agent/callbacks/operator_validator.py,sha256=MrQZC5ySjHtjGryVrY8T0bUL9rOqSqTA7rMNqkqmXvU,6484
19
+ agent/callbacks/pii_anonymization.py,sha256=OSnb309Klc5GIQcrYuZvw-ddJJ0FNJ3U0WiJeT3Q8BA,3179
20
+ agent/callbacks/prompt_instructions.py,sha256=RUqsJhiNiXqaOM_P2AfyBinWUDdgDku46BExLMUJHn4,1517
21
+ agent/callbacks/telemetry.py,sha256=nCm2vq6ZBPfNvdz_MICn8LyBGLKhKBzYVE4sm31gpzE,7171
22
+ agent/callbacks/trajectory_saver.py,sha256=4PIcitRlh0rIqmKsgLAvYF2qSrYBO5i_sGq2MvpwMDg,15853
23
+ agent/cli.py,sha256=icDtgET50Ny8lBt7edKfsIiLPdh0Mdt-YzxAfLea5kQ,17296
24
+ agent/computers/__init__.py,sha256=R2L3xdkD8FPcB0_qIp2WrhklnOVGnSaAvVqODuaLXq4,1475
25
+ agent/computers/base.py,sha256=guxW_5EVpmAWtmaI_fQpc1owRFULcU4va6a9aFyg-is,2166
26
+ agent/computers/cua.py,sha256=lDu8HuvJirmlGnab0URB9lTCAnE6S9k3VfkCwzeUROQ,4816
27
+ agent/computers/custom.py,sha256=xszJK-PVz5mrt38HcW5p0PB4zEFAxeyVGz-buRfyDcE,7826
28
+ agent/decorators.py,sha256=KLSLczVt6AIh8IPp5YUIqJhNMpcbYUu-irCpc6uGKfI,1875
29
+ agent/human_tool/__init__.py,sha256=2lp9aZLdId4iooY6sdMw4TwVmDdAvsKyZFJla99BpA0,748
30
+ agent/human_tool/__main__.py,sha256=P4H50miHpkqRax6sfRG9PSRct2g82RLwfmshFvqpSLs,1069
31
+ agent/human_tool/server.py,sha256=YeTsVDwRFBn6x7lGCywNe3H94hA6Fsp8SFfHslhxkac,7933
32
+ agent/human_tool/ui.py,sha256=TiyBXeiSpBX6P96twx3FRU4J36_FfvYLuvgDrBHVHN4,30773
33
+ agent/integrations/hud/__init__.py,sha256=fVJXPhTdu3-2-8h1qC4kTCtsphgajUO-rnuDJbMnvbw,5854
34
+ agent/integrations/hud/agent.py,sha256=vfuU0t1vcwZhpxnuTNXs8-zQQ3p1RxJq53cI3PmGGqw,14544
35
+ agent/integrations/hud/proxy.py,sha256=Kj9grnLbuaCS-2y2TXVuRBQwqifzh-UX0Q916V9PWyY,11718
36
+ agent/loops/__init__.py,sha256=MrVFh0zYLn-cd8mNCKzqwowu5TFkzA1mlJgg69p6bHE,476
37
+ agent/loops/anthropic.py,sha256=t0YMTLfUnnWjdFXeeELbKcNcYSbbbKo43rYEmGvTcTg,71507
38
+ agent/loops/base.py,sha256=hNEmXnTXEHeYy4WlPqEiatkc35KgEU2C52tHOL2B_JQ,2264
39
+ agent/loops/composed_grounded.py,sha256=Cc5w9gU-5D0MP-Wjb4XLcjuNIN9EeRKXNyMtLwRoq8I,12395
40
+ agent/loops/gemini.py,sha256=YYWEnRvkcIGyAZuUlvBfw4TTp3pjAxXyVaT2EyRIJKI,13982
41
+ agent/loops/glm45v.py,sha256=lu3e85uCSod4m28GCfs2_rKjM8_K0jxp_sqzYpeqC6g,34443
42
+ agent/loops/gta1.py,sha256=Q6OPf54_9Jvy0L4af9H8omyIfDTdrQVz7bmW_vKH-Gc,5597
43
+ agent/loops/holo.py,sha256=0FQJifXNrTaNIHaREb8R14byHOmzGvJfe_gUC5p9fP0,7503
44
+ agent/loops/internvl.py,sha256=x9CCwYvANEWrWgO0ThE0trUKng28g5306L3pBT4CEFI,6561
45
+ agent/loops/model_types.csv,sha256=GmFn4x80yoUpQZuQ-GXtJkPVlOLYWZ5u_5A73HRyeNE,112
46
+ agent/loops/moondream3.py,sha256=Dr7rL-yqXD3TR-2YT6xQ588WMVTB_uobdUF-oLtQi_Y,18557
47
+ agent/loops/omniparser.py,sha256=vClGdTufh4eKZYRClNtvUA0tg7hNuj4RWqcF6HohO4U,15592
48
+ agent/loops/openai.py,sha256=6XWPWa-iW-2cSo60t_4qj9xEy_-5zbiKf_J2Pq1xo8g,8437
49
+ agent/loops/opencua.py,sha256=H3MVJ2ghZgNduBsrUlmpaw3NDPM5xHZUEWMRMJfz0AU,4128
50
+ agent/loops/qwen.py,sha256=ykYGIPLt8jdJ47KFKlY-Dnyc2PoWAbggKw_CnEmcyfg,20026
51
+ agent/loops/uitars.py,sha256=fLnQeld27S3orzlkbbjL2EPoz-ItR6ssq3sl2eQK-v4,31985
52
+ agent/proxy/examples.py,sha256=rInzhqOE0ZDLN_2D0pbUWrxzkqcXnfujmAKs0THm6mU,6062
53
+ agent/proxy/handlers.py,sha256=gHxx0tf-EfoLfoRQ4hYRcU3Fwh7tts7_5L8mBGcIz40,9306
54
+ agent/responses.py,sha256=NBOsubWzwLmkTsyeZP_aLRX-dRHRzNQ5WDK7i8GIrUg,30155
55
+ agent/types.py,sha256=qK8yjPIPAfXykXok9nS8dvmbFYFUUpxdd3W3JUMCFsI,1061
56
+ agent/ui/__init__.py,sha256=vHINeH6zAcseCZSFe7pzcsaIdVTVoATm5YhEJtZdeMM,126
57
+ agent/ui/__main__.py,sha256=Ee9KF16h4fWlb6J48OBqc7cQEbzSUZgNe0L7GlKsdpg,74
58
+ agent/ui/gradio/__init__.py,sha256=yv4Mrfo-Sj2U5sVn_UJHAuwYCezo-5O4ItR2C9jzNko,145
59
+ agent/ui/gradio/app.py,sha256=ILw0PVMfQgEM2xIjymnLagNk82UtvbjW5qf-pkgRyAM,9089
60
+ agent/ui/gradio/ui_components.py,sha256=trTu7VuPYZgMKwZ4_8TfT3sQE-ILvLmEKdMzMsh0AqU,38964
61
+ cua_agent-0.4.35.dist-info/METADATA,sha256=AjzIOzdJsfI7rf_Fhu-nDBTUfhQDkPPoK_nbg71_zGU,6909
62
+ cua_agent-0.4.35.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
63
+ cua_agent-0.4.35.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
64
+ cua_agent-0.4.35.dist-info/RECORD,,
@@ -1,63 +0,0 @@
1
- agent/__init__.py,sha256=MaW-BczJ-lCACPYH39DvFhE7ZWiSo7sBO6pBfyO7Nxc,1269
2
- agent/__main__.py,sha256=lBUe8Niqa5XoCjwFfXyX7GtnUwjjZXC1-j4V9mvUYSc,538
3
- agent/adapters/__init__.py,sha256=Q_OxxwXBcBIetQ_DtHS5bwZWXrvCKPX2grCg8R0UKek,301
4
- agent/adapters/huggingfacelocal_adapter.py,sha256=3ht4jCUP4rpjPxi7vj8xOJNelTgfsUq0YbS44FwVN0c,7089
5
- agent/adapters/human_adapter.py,sha256=xT4nnfNXb1z-vnGFlLmFEZN7TMcoMBGS40MtR1Zwv4o,13079
6
- agent/adapters/mlxvlm_adapter.py,sha256=4VhhKDZfLLKL5joL1v4PPFvYw-R8spoDsat3vOAGnpE,14864
7
- agent/adapters/models/__init__.py,sha256=23ETHLbn1C3VW4zMzSn1Ql-gsZz-wQCeJX12Lv_0n8M,1412
8
- agent/adapters/models/generic.py,sha256=hpJt73jQePV80NYRAJTtOaElcrtGcpYK-QnInZIUkk0,2768
9
- agent/adapters/models/internvl.py,sha256=PbFjU_Fu1JIahlEtR5pTO7RSV2UYJ9CAlQrMXKXJrTA,11385
10
- agent/adapters/models/opencua.py,sha256=gPoZBMXyjiPEJ7Py2mpRWHiyay8X-y-pOSKw1LC_ihU,3924
11
- agent/adapters/models/qwen2_5_vl.py,sha256=kc9YrtCB0FFy-oB1EkD_zasxYnbJg1wGiss6i0ilwdo,2809
12
- agent/agent.py,sha256=NCRK1xRGt_sa1Yh_do2IPRceV024P2p7KR81wwCYlY8,30462
13
- agent/callbacks/__init__.py,sha256=VqYHFt_wk1mc3hKudMZk2Qakrh-bn2rVKh_4xebF0tI,725
14
- agent/callbacks/base.py,sha256=UnnnYlh6XCm6HKZZsAPaT_Eyo9LUYLyjyNwF-QRm6Ns,4691
15
- agent/callbacks/budget_manager.py,sha256=RyKM-7iXQcDotYvrw3eURzeEHEXvQjID-NobtvQWE7k,1832
16
- agent/callbacks/image_retention.py,sha256=8MeLo5-Y7cACpsNk2p_bvnZIYKpW6XgyukmdYGX23rE,3588
17
- agent/callbacks/logging.py,sha256=OOxU97EzrxlnUAtiEnvy9FB7SwCUK90-rdpDFA2Ae4E,10921
18
- agent/callbacks/operator_validator.py,sha256=T5tp62pkShkcdHu2rgREUGdk8fryL_ziJsItXsfgYUQ,6494
19
- agent/callbacks/pii_anonymization.py,sha256=NEkUTUjQBi82nqus7kT-1E4RaeQ2hQrY7YCnKndLhP8,3272
20
- agent/callbacks/prompt_instructions.py,sha256=RUqsJhiNiXqaOM_P2AfyBinWUDdgDku46BExLMUJHn4,1517
21
- agent/callbacks/telemetry.py,sha256=RbUDhE41mTi8g9hNre0EpltK_NUZkLj8buJLWBzs0Ek,7363
22
- agent/callbacks/trajectory_saver.py,sha256=-XNgiKU6T8Qw_i2AZMQuw0HuUe6MHkU89rjn_T386Rw,16128
23
- agent/cli.py,sha256=QsHx1w0THEdaq7YOXPZ_mprWtO_n64sgPAMFUOIJ3og,17603
24
- agent/computers/__init__.py,sha256=39ISJsaREaQIZckpzxSuLhuR763wUU3TxUux78EKjAg,1477
25
- agent/computers/base.py,sha256=hZntX4vgc1ahD3EnFeb9lUjtBmgka1vb27hndPl9tKQ,2187
26
- agent/computers/cua.py,sha256=xp2A34kT2C1NKqSRo2GB6766gkraM-UtpFjRv8LUTSc,4889
27
- agent/computers/custom.py,sha256=I_CHXvczLg43c_QBk8F_WDOlaSOOzK6b-Tkum2OSRIM,8029
28
- agent/decorators.py,sha256=n8VvMsififWkmuk75Q7HIpo0xAA2yAeQ6J-OOiwbAKc,1836
29
- agent/human_tool/__init__.py,sha256=3m5_g-Fo_0yX5vi7eg-A92oTqO0N3aY929Ajp78HKsE,771
30
- agent/human_tool/__main__.py,sha256=VsW2BAghlonOuqZbP_xuCsaec9bemA1I_ibnDcED9D4,1068
31
- agent/human_tool/server.py,sha256=ceuL5kw_RjgAi8fueLU3nTjyzOLE25Shv1oTJnSHsoQ,7964
32
- agent/human_tool/ui.py,sha256=wu9eZorhxCkyPTlBSZjYaVzutoHMlucAz8UGNpAT4bM,30644
33
- agent/integrations/hud/__init__.py,sha256=xir5BVAlG2cFc7rHSx_Ea_2b1kp2TtFuKJk07jny7qY,5969
34
- agent/integrations/hud/agent.py,sha256=GBikd9MhjDNKMiMG8J7PE3OMSmvmC_JLZ1p5xr2cZoc,14006
35
- agent/integrations/hud/proxy.py,sha256=8HUoh7uZ8Z3vkhPXK0dskgePGsP8oCqyYij0mE_E7X8,10902
36
- agent/loops/__init__.py,sha256=Nefn042YQMMaC6tTHvaQ17m9hNEVSPG4Xh2rpujfSos,549
37
- agent/loops/anthropic.py,sha256=hGqRcUYaajnOTIlEGCpLeHqUoIzS293M8sqFOC_NTUY,70211
38
- agent/loops/base.py,sha256=LK7kSTnc2CB88LI7qr2VP7LMq0eS5r2bSEnrxO6IN5U,2345
39
- agent/loops/composed_grounded.py,sha256=Um_8G0v5DEzF_A9wWIGp_IDPDMvv4IXDTFpEDH92Vto,12367
40
- agent/loops/gemini.py,sha256=m_bGdxujWBmzYpEnZg84OXDCyh06MYNiDrO3beVstCQ,13718
41
- agent/loops/glm45v.py,sha256=EKAoh-PWkcCdzBVebjXbdqoDNkXgcmJpIqmTNPiZ8TM,35127
42
- agent/loops/gta1.py,sha256=uGIcUH5ChzO75eGvoQxuKMBWjX-1J9-xmC7vPetobjU,5831
43
- agent/loops/holo.py,sha256=peQ0xx4XQDBQ3g2XKRLCgyrU_2PkXe3RaysNBqFyS90,7481
44
- agent/loops/internvl.py,sha256=iQs6DSoP9JOyUxRAz_HPuv4Hi2Sbv-Jc3022W-oPX5Y,6596
45
- agent/loops/model_types.csv,sha256=GmFn4x80yoUpQZuQ-GXtJkPVlOLYWZ5u_5A73HRyeNE,112
46
- agent/loops/moondream3.py,sha256=ZmTcJxLxHzrxQqbXHyTJxv5bCSVjotjo-cIWH8u9olk,18085
47
- agent/loops/omniparser.py,sha256=-db8JUL2Orn47ERIaLbuNShAXn4LeIgYzRWphn_9Dg4,15071
48
- agent/loops/openai.py,sha256=2typWRS7j2sVm52AzwwigPniCrdw9IVvllypjXN2mKI,8694
49
- agent/loops/opencua.py,sha256=Chb4UASHDrdcX_fO__Gw2e9ay4Hl6Vq38K5x-IoHyuo,4432
50
- agent/loops/uitars.py,sha256=mVPt4V-HabX7ZiQnM55BVQt73CuZUjmUAsbm4Tf6TXk,32351
51
- agent/proxy/examples.py,sha256=GYFJ-sfDsSNZr9n_qpvDx_0rShqoKE5JW0ibbljWfoo,6192
52
- agent/proxy/handlers.py,sha256=48mMNyZOU3dJQ6oI5r2kDDe29rcU49MConlB0MZeCsU,9602
53
- agent/responses.py,sha256=_SoN4BkaTxMHMB21EOtDc_aDBIJlfDwsCzszMBnIkH0,30764
54
- agent/types.py,sha256=h6SnmTAEAaryVCjwVZFAuCbio9UW13OqgQEV7HKmZVM,1060
55
- agent/ui/__init__.py,sha256=DTZpK85QXscXK2nM9HtpAhVBF13yAamUrtwrQSuV-kM,126
56
- agent/ui/__main__.py,sha256=vudWXYvGM0aNT5aZ94HPtGW8YXOZ4cLXepHyhUM_k1g,73
57
- agent/ui/gradio/__init__.py,sha256=yv4Mrfo-Sj2U5sVn_UJHAuwYCezo-5O4ItR2C9jzNko,145
58
- agent/ui/gradio/app.py,sha256=Ol97YEbwREZZQ9_PMjVHlfOcu9BGsawxgAGAm79hT80,9117
59
- agent/ui/gradio/ui_components.py,sha256=dJUvKDmc1oSejtoR_gU_oWWYwxaOOQyPloSYRGMrUCQ,36068
60
- cua_agent-0.4.34.dist-info/METADATA,sha256=bfV4ikbYKrLbB3IQV6naEBEeSJK8nS6SzdgWmcBR_60,6649
61
- cua_agent-0.4.34.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
62
- cua_agent-0.4.34.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
63
- cua_agent-0.4.34.dist-info/RECORD,,