hud-python 0.4.58__py3-none-any.whl → 0.4.59__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 hud-python might be problematic. Click here for more details.
- hud/agents/__init__.py +2 -0
- hud/agents/gemini.py +492 -0
- hud/agents/tests/test_gemini.py +372 -0
- hud/cli/__init__.py +26 -24
- hud/cli/eval.py +57 -1
- hud/cli/tests/test_eval.py +20 -0
- hud/settings.py +6 -0
- hud/tools/__init__.py +13 -2
- hud/tools/computer/__init__.py +2 -0
- hud/tools/computer/gemini.py +385 -0
- hud/tools/computer/settings.py +21 -0
- hud/tools/playwright.py +9 -1
- hud/tools/types.py +9 -1
- hud/types.py +1 -0
- hud/utils/tests/test_version.py +1 -1
- hud/version.py +1 -1
- {hud_python-0.4.58.dist-info → hud_python-0.4.59.dist-info}/METADATA +2 -1
- {hud_python-0.4.58.dist-info → hud_python-0.4.59.dist-info}/RECORD +21 -18
- {hud_python-0.4.58.dist-info → hud_python-0.4.59.dist-info}/WHEEL +0 -0
- {hud_python-0.4.58.dist-info → hud_python-0.4.59.dist-info}/entry_points.txt +0 -0
- {hud_python-0.4.58.dist-info → hud_python-0.4.59.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
hud/__init__.py,sha256=0LQ9PyuU6yZx7Fxu8YJXKC1i3TTHjg3UrInThh759QE,653
|
|
2
2
|
hud/__main__.py,sha256=YR8Dq8OhINOsVfQ55PmRXXg4fEK84Rt_-rMtJ5rvhWo,145
|
|
3
|
-
hud/settings.py,sha256=
|
|
4
|
-
hud/types.py,sha256=
|
|
5
|
-
hud/version.py,sha256=
|
|
6
|
-
hud/agents/__init__.py,sha256=
|
|
3
|
+
hud/settings.py,sha256=MiMmr4i6oRLxpNhFN8DYxB88F-jDZlUZ7TPIwDuZwWo,4285
|
|
4
|
+
hud/types.py,sha256=656keUeAzBN7c8xiHb1EJPjy-qpvcDurDqmZyAFYoLc,11630
|
|
5
|
+
hud/version.py,sha256=WshQTRYPnxlOwxXRuBD7L88GznXLqgBhf5IS-eFrLSc,105
|
|
6
|
+
hud/agents/__init__.py,sha256=ZDkYUqc3_kngg4B96O0tRZ35QnR6BhdOwpuDuHl8_q8,337
|
|
7
7
|
hud/agents/base.py,sha256=nRRnK_kA_PZDT0fepMMTz3QDTHj0jpqvbTqdgRPKSlg,32514
|
|
8
8
|
hud/agents/claude.py,sha256=Lf7p_h5H4sd2w16ZNc2ru3xuxNP7IDeFayrcdePOLSE,16030
|
|
9
|
+
hud/agents/gemini.py,sha256=-v1MyyXMnQoKZ1787Oqb0YdkZ9WDzy80SQK8O5bK7W4,20967
|
|
9
10
|
hud/agents/grounded_openai.py,sha256=UC_Z0BP1fvThB95cCYqvMgaQLYXFYB_8zlawwIphruY,11247
|
|
10
11
|
hud/agents/langchain.py,sha256=1EgCy8jfjunsWxlPC5XfvfLS6_XZVrIF1ZjtHcrvhYw,9584
|
|
11
12
|
hud/agents/lite_llm.py,sha256=RW_VcMB-NIsxSfVhiQ2tvXSNQp3rTQg5h5Ax1b56bP0,2238
|
|
@@ -20,16 +21,17 @@ hud/agents/tests/test_base.py,sha256=VvsEYMPlhV0FA0S1DHA__xSFKNJfS6_wD1lZhhNHD5g
|
|
|
20
21
|
hud/agents/tests/test_base_runtime.py,sha256=aCOtTCRpJ76TCEvkL5cvEjJGx4hafAqhSf-lLQM0cKw,5766
|
|
21
22
|
hud/agents/tests/test_claude.py,sha256=YsI2TV87Sex2BJsLaO2l99WEL3PL3OhQDlTwUHn04w8,13775
|
|
22
23
|
hud/agents/tests/test_client.py,sha256=uikgh6yhjPPX2RBU4XJQMz1mNox9uXjuwsP8t93id18,13337
|
|
24
|
+
hud/agents/tests/test_gemini.py,sha256=21-pqkdRorK9RQqlbInIYA1YdHdnCeYCClYFJmK-FVU,13833
|
|
23
25
|
hud/agents/tests/test_grounded_openai_agent.py,sha256=VK8lUvHIjWicMX00VKPE-FZyjiJqTEhb80MuRRa9fVc,5437
|
|
24
26
|
hud/agents/tests/test_openai.py,sha256=hPkL_ANbkrB_HUwvd4wBONuWomCarhLJQcFRpmwSbEk,8016
|
|
25
|
-
hud/cli/__init__.py,sha256=
|
|
27
|
+
hud/cli/__init__.py,sha256=bAC1DNFxapuDWY5md2ZR68IOK8ea2AtLZQ9K4-wQjG8,44052
|
|
26
28
|
hud/cli/__main__.py,sha256=fDH7XITyuDITwSDIVwRso06aouADO0CzTHKqp5TOwJE,143
|
|
27
29
|
hud/cli/analyze.py,sha256=4u5oYfJMquOjT9PzzRTYVcTZDxDi0ilNP_g532_hpOU,14716
|
|
28
30
|
hud/cli/build.py,sha256=EV6PsJ08p3mZZkfeUFjZ687ithxKGlUZ66yAF9lvtaI,28780
|
|
29
31
|
hud/cli/clone.py,sha256=AwVDIuhr8mHb1oT2Af2HrD25SiTdwATpE6zd93vzLgA,6099
|
|
30
32
|
hud/cli/debug.py,sha256=jtFW8J5F_3rhq1Hf1_SkJ7aLS3wjnyIs_LsC8k5cnzc,14200
|
|
31
33
|
hud/cli/dev.py,sha256=Cg9BLUs4mcMR6UQw43vW68Tx548BPpzlawlC8NgR2Fk,30018
|
|
32
|
-
hud/cli/eval.py,sha256=
|
|
34
|
+
hud/cli/eval.py,sha256=5otptdHIYxL-yYJGkrEZmiSA2sM6l0u_XTOWeBy4oXg,31032
|
|
33
35
|
hud/cli/get.py,sha256=sksKrdzBGZa7ZuSoQkc0haj-CvOGVSSikoVXeaUd3N4,6274
|
|
34
36
|
hud/cli/init.py,sha256=bkpby7vBDqRH3GUDunNA5PIkbQ-Jnpas5pEeN1ltK7k,9976
|
|
35
37
|
hud/cli/list_func.py,sha256=EVi2Vc3Lb3glBNJxFx4MPnZknZ4xmuJz1OFg_dc8a_E,7177
|
|
@@ -67,7 +69,7 @@ hud/cli/tests/test_clone.py,sha256=oC2mf-41QQVc7ODJkjrWbVPNMB2fDW3nZ6jY6w93gvQ,4
|
|
|
67
69
|
hud/cli/tests/test_convert.py,sha256=_-W8wLEADUsS9LjaveERJ1i0v8PLP0Oj5Vu7lNp6a_0,12510
|
|
68
70
|
hud/cli/tests/test_cursor.py,sha256=ZfxAFKJesJ3UV1JBoASSRlv6BXbpvVEk_pjxUg1jnf4,9821
|
|
69
71
|
hud/cli/tests/test_debug.py,sha256=bQ76d_0HJfthHBSECmGNv499ZE57CIOKsanMlNfNHGk,18036
|
|
70
|
-
hud/cli/tests/test_eval.py,sha256=
|
|
72
|
+
hud/cli/tests/test_eval.py,sha256=s_D9UCTt7Qf90GK99LY3sO78ItaYxCsos3jHH6wuWDU,23048
|
|
71
73
|
hud/cli/tests/test_list_func.py,sha256=pkG4TtJJBMi9Xk8KBNFBlGcam7kwz01IRsjfQBL2PxM,10700
|
|
72
74
|
hud/cli/tests/test_main_module.py,sha256=6RhwCcdRSN2uQV6-adti40ZcLd3u-mPR1ai6wL64c6Y,1105
|
|
73
75
|
hud/cli/tests/test_mcp_server.py,sha256=itMQvk4Tk0ANtKGrEqM3Kf2P2fMuua0k3DRlDBxwrCo,954
|
|
@@ -201,21 +203,22 @@ hud/telemetry/tests/test_instrument.py,sha256=Y3MuM8RSEdRrjKLx7wFwrGKe1o1mhXwUNz
|
|
|
201
203
|
hud/telemetry/tests/test_job.py,sha256=8gPm1nB2FArIgUrRvKumac3SnQzQIJgjjYuYafIYOqQ,19022
|
|
202
204
|
hud/telemetry/tests/test_replay.py,sha256=eREc6qgSJDRT1pOPdyhiEoEJ9H2yT1ospaU1RvTKlvg,1328
|
|
203
205
|
hud/telemetry/tests/test_trace.py,sha256=-YdXx_sesVY8gzsySpI_wCsrii4aBmO_Td9RZIwlRI8,9107
|
|
204
|
-
hud/tools/__init__.py,sha256=
|
|
206
|
+
hud/tools/__init__.py,sha256=BWqPko14cuA5d3XJu93nbHc-cIGRMgTU7_pkBVaCla8,1157
|
|
205
207
|
hud/tools/base.py,sha256=IxpnEHfxUtgz1k_w-09l65KKpDV3tQu4WdF3nZDsdwU,17854
|
|
206
208
|
hud/tools/bash.py,sha256=1jl7cpB1ApGXn7Hy8zghJ2fXugEol6UeN0aYUSiM2EQ,5189
|
|
207
209
|
hud/tools/edit.py,sha256=NYQL3coPIaG_-TP6DOpsVWFg1xcaMZwM5LtFye9WgNE,12644
|
|
208
|
-
hud/tools/playwright.py,sha256=
|
|
210
|
+
hud/tools/playwright.py,sha256=WaDkaY4Hb1rv5SiEui1KIHSRoC35qWK5OeDRi-Uk7Zk,15865
|
|
209
211
|
hud/tools/response.py,sha256=t6Oc8NM4u951A1XMCBaIkFyu3VNEQ8dcWURyTygfZmA,2228
|
|
210
212
|
hud/tools/submit.py,sha256=hJG2G3Oex4fz_3CsAUVhOhAA56UvDMhquB29xCT-C3M,1973
|
|
211
|
-
hud/tools/types.py,sha256=
|
|
213
|
+
hud/tools/types.py,sha256=2SnNzHYgqKPRf2FFS3EmM4dxck7J2i8i-WL5WP7PDgs,3199
|
|
212
214
|
hud/tools/utils.py,sha256=bfVyYMcBOJvr1QdptCjVb6jaHVGIL5WUxmY59kzMekQ,1447
|
|
213
|
-
hud/tools/computer/__init__.py,sha256=
|
|
215
|
+
hud/tools/computer/__init__.py,sha256=kVdGOZnyvUqcQtL_gsID-vgIsXFocbOSSFO1SOE_WZ0,491
|
|
214
216
|
hud/tools/computer/anthropic.py,sha256=oJfNMnjNFAn9mW1xY1nbWnTY2IqwFqdDR0mWSf8lu-s,17352
|
|
217
|
+
hud/tools/computer/gemini.py,sha256=vyBTUpFVEJQI5i9Zv4REgMUMtiSRUx5vaDrPGL5-zks,16639
|
|
215
218
|
hud/tools/computer/hud.py,sha256=v2VdLMsc8-3J4_k2vpcZRr_RJzXsxdVNs6IfbCL-WTc,16466
|
|
216
219
|
hud/tools/computer/openai.py,sha256=QEsF45LWOHftDrAoIOnCFZZT1cL--s-ArSov5aluWb8,11189
|
|
217
220
|
hud/tools/computer/qwen.py,sha256=K8FZfy664fQW6DXxeWTr2AorKIGxr9h_AeL-0vEYws8,18578
|
|
218
|
-
hud/tools/computer/settings.py,sha256=
|
|
221
|
+
hud/tools/computer/settings.py,sha256=BEB4puJpWO1Ur-0sR1DioMDzoiBJTeTQf9DELKGRxkE,4189
|
|
219
222
|
hud/tools/executors/__init__.py,sha256=jHxfus9SLhkL6YGtebR5RyKYyVAix3yu5EkUp2Q27Kg,732
|
|
220
223
|
hud/tools/executors/base.py,sha256=mF_aiVoVkasoUi8hDyEtXMWbHKd4imKeFFJLJmQsjSY,14636
|
|
221
224
|
hud/tools/executors/pyautogui.py,sha256=Gw3x2yw7x9xJ1uhYLxkOkArPnUQagUN1AZgBZ7YgbWo,22362
|
|
@@ -266,10 +269,10 @@ hud/utils/tests/test_progress.py,sha256=QSF7Kpi03Ff_l3mAeqW9qs1nhK50j9vBiSobZq7T
|
|
|
266
269
|
hud/utils/tests/test_tasks.py,sha256=Rbbm51vZxygyWlhjunFq4IfFPefVB3qevM9_CZSt5w4,5774
|
|
267
270
|
hud/utils/tests/test_telemetry.py,sha256=5jl7bEx8C8b-FfFUko5pf4UY-mPOR-9HaeL98dGtVHM,2781
|
|
268
271
|
hud/utils/tests/test_tool_shorthand.py,sha256=1p3j3D0G93OXHqnUXbvTs3G4A8awrPvwhPpLi6YPeOM,5458
|
|
269
|
-
hud/utils/tests/test_version.py,sha256=
|
|
272
|
+
hud/utils/tests/test_version.py,sha256=6DAfDyCdG1HunsB912hHD2tCeUCsXYEdD6wiccAla1Q,160
|
|
270
273
|
hud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
271
|
-
hud_python-0.4.
|
|
272
|
-
hud_python-0.4.
|
|
273
|
-
hud_python-0.4.
|
|
274
|
-
hud_python-0.4.
|
|
275
|
-
hud_python-0.4.
|
|
274
|
+
hud_python-0.4.59.dist-info/METADATA,sha256=M_SAz1-DV3geYc4wlEWfc6m0cq0fkZd4FRcKyvy3E18,22366
|
|
275
|
+
hud_python-0.4.59.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
276
|
+
hud_python-0.4.59.dist-info/entry_points.txt,sha256=jJbodNFg1m0-CDofe5AHvB4zKBq7sSdP97-ohaQ3ae4,63
|
|
277
|
+
hud_python-0.4.59.dist-info/licenses/LICENSE,sha256=yIzBheVUf86FC1bztAcr7RYWWNxyd3B-UJQ3uddg1HA,1078
|
|
278
|
+
hud_python-0.4.59.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|