hud-python 0.4.1__py3-none-any.whl → 0.4.3__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/__init__.py +22 -22
- hud/agents/__init__.py +13 -15
- hud/agents/base.py +599 -599
- hud/agents/claude.py +373 -373
- hud/agents/langchain.py +261 -250
- hud/agents/misc/__init__.py +7 -7
- hud/agents/misc/response_agent.py +82 -80
- hud/agents/openai.py +352 -352
- hud/agents/openai_chat_generic.py +154 -154
- hud/agents/tests/__init__.py +1 -1
- hud/agents/tests/test_base.py +742 -742
- hud/agents/tests/test_claude.py +324 -324
- hud/agents/tests/test_client.py +363 -363
- hud/agents/tests/test_openai.py +237 -237
- hud/cli/__init__.py +617 -617
- hud/cli/__main__.py +8 -8
- hud/cli/analyze.py +371 -371
- hud/cli/analyze_metadata.py +230 -230
- hud/cli/build.py +498 -427
- hud/cli/clone.py +185 -185
- hud/cli/cursor.py +92 -92
- hud/cli/debug.py +392 -392
- hud/cli/docker_utils.py +83 -83
- hud/cli/init.py +280 -281
- hud/cli/interactive.py +353 -353
- hud/cli/mcp_server.py +764 -756
- hud/cli/pull.py +330 -336
- hud/cli/push.py +404 -370
- hud/cli/remote_runner.py +311 -311
- hud/cli/runner.py +160 -160
- hud/cli/tests/__init__.py +3 -3
- hud/cli/tests/test_analyze.py +284 -284
- hud/cli/tests/test_cli_init.py +265 -265
- hud/cli/tests/test_cli_main.py +27 -27
- hud/cli/tests/test_clone.py +142 -142
- hud/cli/tests/test_cursor.py +253 -253
- hud/cli/tests/test_debug.py +453 -453
- hud/cli/tests/test_mcp_server.py +139 -139
- hud/cli/tests/test_utils.py +388 -388
- hud/cli/utils.py +263 -263
- hud/clients/README.md +143 -143
- hud/clients/__init__.py +16 -16
- hud/clients/base.py +378 -379
- hud/clients/fastmcp.py +222 -222
- hud/clients/mcp_use.py +298 -278
- hud/clients/tests/__init__.py +1 -1
- hud/clients/tests/test_client_integration.py +111 -111
- hud/clients/tests/test_fastmcp.py +342 -342
- hud/clients/tests/test_protocol.py +188 -188
- hud/clients/utils/__init__.py +1 -1
- hud/clients/utils/retry_transport.py +160 -160
- hud/datasets.py +327 -322
- hud/misc/__init__.py +1 -1
- hud/misc/claude_plays_pokemon.py +292 -292
- hud/otel/__init__.py +35 -35
- hud/otel/collector.py +142 -142
- hud/otel/config.py +164 -164
- hud/otel/context.py +536 -536
- hud/otel/exporters.py +366 -366
- hud/otel/instrumentation.py +97 -97
- hud/otel/processors.py +118 -118
- hud/otel/tests/__init__.py +1 -1
- hud/otel/tests/test_processors.py +197 -197
- hud/server/__init__.py +5 -5
- hud/server/context.py +114 -114
- hud/server/helper/__init__.py +5 -5
- hud/server/low_level.py +132 -132
- hud/server/server.py +170 -166
- hud/server/tests/__init__.py +3 -3
- hud/settings.py +73 -73
- hud/shared/__init__.py +5 -5
- hud/shared/exceptions.py +180 -180
- hud/shared/requests.py +264 -264
- hud/shared/tests/test_exceptions.py +157 -157
- hud/shared/tests/test_requests.py +275 -275
- hud/telemetry/__init__.py +25 -25
- hud/telemetry/instrument.py +379 -379
- hud/telemetry/job.py +309 -309
- hud/telemetry/replay.py +74 -74
- hud/telemetry/trace.py +83 -83
- hud/tools/__init__.py +33 -33
- hud/tools/base.py +365 -365
- hud/tools/bash.py +161 -161
- hud/tools/computer/__init__.py +15 -15
- hud/tools/computer/anthropic.py +437 -437
- hud/tools/computer/hud.py +376 -376
- hud/tools/computer/openai.py +295 -295
- hud/tools/computer/settings.py +82 -82
- hud/tools/edit.py +314 -314
- hud/tools/executors/__init__.py +30 -30
- hud/tools/executors/base.py +539 -539
- hud/tools/executors/pyautogui.py +621 -621
- hud/tools/executors/tests/__init__.py +1 -1
- hud/tools/executors/tests/test_base_executor.py +338 -338
- hud/tools/executors/tests/test_pyautogui_executor.py +165 -165
- hud/tools/executors/xdo.py +511 -511
- hud/tools/playwright.py +412 -412
- hud/tools/tests/__init__.py +3 -3
- hud/tools/tests/test_base.py +282 -282
- hud/tools/tests/test_bash.py +158 -158
- hud/tools/tests/test_bash_extended.py +197 -197
- hud/tools/tests/test_computer.py +425 -425
- hud/tools/tests/test_computer_actions.py +34 -34
- hud/tools/tests/test_edit.py +259 -259
- hud/tools/tests/test_init.py +27 -27
- hud/tools/tests/test_playwright_tool.py +183 -183
- hud/tools/tests/test_tools.py +145 -145
- hud/tools/tests/test_utils.py +156 -156
- hud/tools/types.py +72 -72
- hud/tools/utils.py +50 -50
- hud/types.py +136 -136
- hud/utils/__init__.py +10 -10
- hud/utils/async_utils.py +65 -65
- hud/utils/design.py +236 -168
- hud/utils/mcp.py +55 -55
- hud/utils/progress.py +149 -149
- hud/utils/telemetry.py +66 -66
- hud/utils/tests/test_async_utils.py +173 -173
- hud/utils/tests/test_init.py +17 -17
- hud/utils/tests/test_progress.py +261 -261
- hud/utils/tests/test_telemetry.py +82 -82
- hud/utils/tests/test_version.py +8 -8
- hud/version.py +7 -7
- {hud_python-0.4.1.dist-info → hud_python-0.4.3.dist-info}/METADATA +10 -8
- hud_python-0.4.3.dist-info/RECORD +131 -0
- {hud_python-0.4.1.dist-info → hud_python-0.4.3.dist-info}/licenses/LICENSE +21 -21
- hud/agents/art.py +0 -101
- hud_python-0.4.1.dist-info/RECORD +0 -132
- {hud_python-0.4.1.dist-info → hud_python-0.4.3.dist-info}/WHEEL +0 -0
- {hud_python-0.4.1.dist-info → hud_python-0.4.3.dist-info}/entry_points.txt +0 -0
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
hud/__init__.py,sha256=g2ounE6q48MfCsMm-4UfoC__d0KLz1O3e_arCHFQgBk,419
|
|
2
|
-
hud/datasets.py,sha256=bDIWbuu2eshsxl4RvtxZkb4k28NevIBaKUsk8v6pDQk,12214
|
|
3
|
-
hud/settings.py,sha256=-GEBsb60PwhikCQlFgD1DiuNWgOjFmFVhqK7iTwcvac,2112
|
|
4
|
-
hud/types.py,sha256=li7HCCzIH8FfIGEgO2GFmAHpwCCUfBT-NbXloVVkJAY,4373
|
|
5
|
-
hud/version.py,sha256=JvdmARn-wCmKr0LMLqNvVkCz8MF01kl1VDUCZC2oDgw,111
|
|
6
|
-
hud/agents/__init__.py,sha256=2F7aXfCROLXreVTxWoJNlTZeP8MSY7eZUom1ZSITlsU,349
|
|
7
|
-
hud/agents/art.py,sha256=GE31q7XcnP8qo7Uu1VJCCG5RaiKVf53WIubtdqUPmIU,3574
|
|
8
|
-
hud/agents/base.py,sha256=CHZj73_gwcWcuUIv4fT_1PH2Ac5EnizYV4rBa10JdVE,22857
|
|
9
|
-
hud/agents/claude.py,sha256=2EozkHZS9M2b7Z1sMb07CFeftfnHdSO8W1aDn-rGVGE,14646
|
|
10
|
-
hud/agents/langchain.py,sha256=Hnm6QuGNMhHZklZG3AlqwiMJzz9a8MVaoZlMdyzXUTw,9379
|
|
11
|
-
hud/agents/openai.py,sha256=FK76A49cNdXfOjIETZjzXT8hz7mcjgWwrsA3wZq0D4M,14675
|
|
12
|
-
hud/agents/openai_chat_generic.py,sha256=0u4UYJ-e8Whfa8N2pr1FkaAOBjn3XmWwMGDfHILJg8E,5476
|
|
13
|
-
hud/agents/misc/__init__.py,sha256=TU61TvmQPfJmmEx_EpBGd2aS7dwwnoq1-_VLT6Lav8c,143
|
|
14
|
-
hud/agents/misc/response_agent.py,sha256=e1QcFa9EvnX3VqtZyg5IS2CopycgTb0yIWZIOMTooxI,3116
|
|
15
|
-
hud/agents/tests/__init__.py,sha256=XgsNKhAkOnpWn9cNjbRQEfUolyVVTNWRHdDZW5elbGQ,35
|
|
16
|
-
hud/agents/tests/test_base.py,sha256=Ey6KkgNtvRoIpL9Ihl9vRfhZE4-Er9TAZULvvk-PXPU,29712
|
|
17
|
-
hud/agents/tests/test_claude.py,sha256=0usXXDfSaM3YclvDuHACuUV--hzM81FvML0XVN7zRew,13393
|
|
18
|
-
hud/agents/tests/test_client.py,sha256=s5WPSymwbRGWJIjSwjqQRHEwIWRiqKAquZBFMnQSpTk,14271
|
|
19
|
-
hud/agents/tests/test_openai.py,sha256=9Wuz33TG5j2HjwmzDxxc5Hx3SCW0p2eyRwNDbzrcA4A,9263
|
|
20
|
-
hud/cli/__init__.py,sha256=sUEa1FEfD0MN351Pq6UezBf2oUOAxiBf2pEM1GrzC8g,22351
|
|
21
|
-
hud/cli/__main__.py,sha256=5GJaExX_tzkQsendVrSrBNzUz9yEFx4nkyME8A9-g1Y,151
|
|
22
|
-
hud/cli/analyze.py,sha256=UQV0NQ6QqbeiG4d4wcnixAaihNWGQSILpMxIGKtahgU,14787
|
|
23
|
-
hud/cli/analyze_metadata.py,sha256=Vdrj-tXmLa32a7v4YOhGZd6HML_gtrObHdalLaFDsbE,8492
|
|
24
|
-
hud/cli/build.py,sha256=_5DjYU7Z-F-Izj9N_fxmbN41PBzo6CsGc6TyxDAaTcY,14690
|
|
25
|
-
hud/cli/clone.py,sha256=nc10s8qm4943fvC5f4ASDHVJ7-A_J6cWkyuwiPuBPbo,6284
|
|
26
|
-
hud/cli/cursor.py,sha256=hyaArxYpiVENzjPYQAit7cwNjEdTDaCpftX0A1fC_zw,3101
|
|
27
|
-
hud/cli/debug.py,sha256=ZAHMaNjyYosi40bhid_hrCaFCw4Uu7DrTn7F6uhgN54,14005
|
|
28
|
-
hud/cli/docker_utils.py,sha256=FQLmSJZLLYl5fq4H0sekP0_0u6FK-53IXIbPn9zpAbI,2778
|
|
29
|
-
hud/cli/init.py,sha256=AgUGFYyUqSlCNNJiXd3p7Z_eOL8nJIfx3ais-9qDucs,7953
|
|
30
|
-
hud/cli/interactive.py,sha256=ewO-ipLNR9Q16OteAAouSa_2_FNSH3OO3vMxXBJQyQI,13216
|
|
31
|
-
hud/cli/mcp_server.py,sha256=E5CsIHz5mxoFyfXfZ2UQxirlsLgF9bvzdbl_nu6LATw,28873
|
|
32
|
-
hud/cli/pull.py,sha256=Y5XMOPPIgJ2agZyLgjHYMAJ_HDUiOE1LJka-s_5zMak,12275
|
|
33
|
-
hud/cli/push.py,sha256=IkuIO6g6EmTzjCOB0eZ1DB5KLN7-yu5xQ2Cb2whVkJ8,14533
|
|
34
|
-
hud/cli/remote_runner.py,sha256=8iH9ez11Xd9R2lsbArn517MVICogsYcyCMkXA_fe2TQ,9716
|
|
35
|
-
hud/cli/runner.py,sha256=5526x2hC_cd7MSvDPtMVsDIAjVPXHMpre0KO3CChkQY,5048
|
|
36
|
-
hud/cli/utils.py,sha256=rKnjcgJ3Fm844qardCrQPQ_PFVtad9JIXQhUEOHhl0A,9104
|
|
37
|
-
hud/cli/tests/__init__.py,sha256=umGvkKfARyrB1JzEDuK7WDbkMzK5PeTV1CeTZ5g4Ado,71
|
|
38
|
-
hud/cli/tests/test_analyze.py,sha256=XjnfHTepphZ4cSTPngeTfEv_0qrr2olagmRbOgfUw2Y,11255
|
|
39
|
-
hud/cli/tests/test_cli_init.py,sha256=UBMQ7T-3rCL8i01fuDJWaJlQc7Hn79xyz9ArqTcLxD4,11554
|
|
40
|
-
hud/cli/tests/test_cli_main.py,sha256=METXVbD9ir3QLnCODjbJTO_ph5Lk0ID48AbVy5nuJKI,724
|
|
41
|
-
hud/cli/tests/test_clone.py,sha256=7JBeXk-n6S_iuUiRUmayEv-L7NRypyY_2KeMs_OcksA,4600
|
|
42
|
-
hud/cli/tests/test_cursor.py,sha256=71Nt0TABTwLTaeW9XhAxQFikhuHKLJjZddk87JFQvxU,10068
|
|
43
|
-
hud/cli/tests/test_debug.py,sha256=VQlwZq_x10NPZpSf1CbvIpMs1NgaZKTXPqKfX5MCMUg,18481
|
|
44
|
-
hud/cli/tests/test_mcp_server.py,sha256=6v9-5_iNDTf3WLFWUevS_brv1puG7U0GDpTx4szwcGo,4517
|
|
45
|
-
hud/cli/tests/test_utils.py,sha256=DZfe-0xoX_VGQO-mSZr7xca0WBl6z_9Eai_7OxjzuUI,13854
|
|
46
|
-
hud/clients/README.md,sha256=ypuNGE97Bv-1c--DIiy7mh-yUVITsEKn-CBgDvLs4J4,3969
|
|
47
|
-
hud/clients/__init__.py,sha256=_mdxGF3pnuFB0tpVKpNZ9lz27iKSOa2-ck3NjHHFg_Y,344
|
|
48
|
-
hud/clients/base.py,sha256=tYHwoCArNSdc6tCSbGoDDdKw_IVitNIHxF2mk94FB3Y,13876
|
|
49
|
-
hud/clients/fastmcp.py,sha256=mF1ZZHburlpzNdZZ1ndZCaF_0jVT7-ot2sqmZXK49Vo,9389
|
|
50
|
-
hud/clients/mcp_use.py,sha256=38_-yfNC-zhHbqmV2HRmBpMd-fTbB22DO0PnJPd7A50,11302
|
|
51
|
-
hud/clients/tests/__init__.py,sha256=FSkZn2zN5p4DQTMcv6RppiboIxG-9wSUoPpB5kw06g8,34
|
|
52
|
-
hud/clients/tests/test_client_integration.py,sha256=he-Vtmo84G7HuNSk1harEwcBli_K5T9ttQaH2MKGgDU,4309
|
|
53
|
-
hud/clients/tests/test_fastmcp.py,sha256=GsjUk708KqOzPgQwphQL7WCJiimO_1xitrbq-5aD3p4,13372
|
|
54
|
-
hud/clients/tests/test_protocol.py,sha256=XJc8lXqypiHwFhfw_rtb2-IQ3Gr9z2PCsEi1OGgfqaQ,6828
|
|
55
|
-
hud/clients/utils/__init__.py,sha256=xAbMuwsQcOOAZEQhgqVBGud3MjRjZ0tOapAu6ZYR4YQ,33
|
|
56
|
-
hud/clients/utils/retry_transport.py,sha256=G1XURBZ7E2rSYlkpnCbUNcQ2r4GgOB1Hltn5FHQyxj8,5518
|
|
57
|
-
hud/misc/__init__.py,sha256=J_MuFkCEhMBQxBq17nArf5xLSEu_CJ5CZ1w7LiTtq2U,44
|
|
58
|
-
hud/misc/claude_plays_pokemon.py,sha256=F_UZs-R02zLXF4lwn-nrQzWq5Q1ThSXL5g3hqFEqxQE,10745
|
|
59
|
-
hud/otel/__init__.py,sha256=cdyHWKzbtoJ5GEzk7rd-ltcxbwMU7fXm05vkNeiPyqw,1038
|
|
60
|
-
hud/otel/collector.py,sha256=ciVvQWOoCTmYxN4s89Js0rlIX1mDBJ37PFlCD4wYLJU,4639
|
|
61
|
-
hud/otel/config.py,sha256=_e0Tv0jJLY_S2_42mB_kAmUKw0J5BIynXj8YLF1XrUI,6413
|
|
62
|
-
hud/otel/context.py,sha256=qv4UD3V28y-R8FdoBnTIGe5-XzW_rIShhZVtup71cR0,18310
|
|
63
|
-
hud/otel/exporters.py,sha256=xCeHJUa1ECp0ah7VTR3juw4fX4PXzTKb7yRC3tTUbR8,14612
|
|
64
|
-
hud/otel/instrumentation.py,sha256=c9hyDN8PLN8KOhIVMalVI8fUePwaYLbaKilOmHpKvzM,3672
|
|
65
|
-
hud/otel/processors.py,sha256=h-ls0clNuJuCnY02m42y4g8GJBWQaHV3G2RhmveimMk,4733
|
|
66
|
-
hud/otel/tests/__init__.py,sha256=f9huyxi7QPIKzfEb3MWK4fX7r89efj5TBkPrufjXFGI,44
|
|
67
|
-
hud/otel/tests/test_processors.py,sha256=382MfEGtlwTyor9A4RQt16wrjvYrB_vG7LgJxScTkl8,6975
|
|
68
|
-
hud/server/__init__.py,sha256=MxGejM5W1He05H3nJ43cxxOtDuzcgBjYOHqdh2rIEIc,96
|
|
69
|
-
hud/server/context.py,sha256=ZcL1qtyRfcJpjtuHp1vO4RyFhdHXa1LZlPbLjTT7fhw,3324
|
|
70
|
-
hud/server/low_level.py,sha256=_WruJbbCcNlkyy-7gr_MrDPSO1QNOrt8BbajJR_uzUM,4833
|
|
71
|
-
hud/server/server.py,sha256=IBOi5xSZKgPHd7f6dDR2DKDDrYKJk1_W2RfuiZmT9tA,6534
|
|
72
|
-
hud/server/helper/__init__.py,sha256=GCY5_s45JLSr-J5E4qU11LCgKttfXeZCGbh2ny_fwY8,121
|
|
73
|
-
hud/server/tests/__init__.py,sha256=x985KPu1Zpfn_trs3bpfqzMFbNy6kHMLgnqUYudnzfs,52
|
|
74
|
-
hud/shared/__init__.py,sha256=gHamPuurfbeoaTT2dgfADcq_uF5-1izq4t3cfM_BFYc,144
|
|
75
|
-
hud/shared/exceptions.py,sha256=lTMqw0JoAvGN1Pws3Dqr9h0-AjPIamrO8fmRHRBmVdc,5696
|
|
76
|
-
hud/shared/requests.py,sha256=ulxNvhSTqCDMoPO8F4LeZQrNyCK5rXrYbeNUGBZ9XTg,9112
|
|
77
|
-
hud/shared/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
|
-
hud/shared/tests/test_exceptions.py,sha256=acJ7UxoFUtsBipOLptlIZ70Jbu8cJ-nMoUuOpWhSGqQ,5472
|
|
79
|
-
hud/shared/tests/test_requests.py,sha256=2agIf4CHdlT2Dyg6hewaLoENP5FAP0hZZMXCUim_9Rc,9389
|
|
80
|
-
hud/telemetry/__init__.py,sha256=6GneOGX3LDlJxzGCweyHNuJAISqBdO0VpIXHuV8ShZc,688
|
|
81
|
-
hud/telemetry/instrument.py,sha256=gDy7BnNSqn4SEQLEeVE2KypY4J-apJ17tJ3-eRUgy5k,14475
|
|
82
|
-
hud/telemetry/job.py,sha256=7kvKnGPuIhfwbcJl2W-NV4gSaT0vgKXrJsMFsVdCFf8,10307
|
|
83
|
-
hud/telemetry/replay.py,sha256=Cug9SjYFbo_jKpaImFrVVhJP5CjLM3f1JLnkA72zD8E,2380
|
|
84
|
-
hud/telemetry/trace.py,sha256=rbSgUhBDLW8gMVXwzMobZhzhIRWhn2gEQpNySnFwDOY,2291
|
|
85
|
-
hud/tools/__init__.py,sha256=ddNZX6Fc_TIc29w2sqKgAFftV6QmJiVQ_umrAXUkT0U,938
|
|
86
|
-
hud/tools/base.py,sha256=A1Gkln2ffEz7P9ON97UhdJPqpXWqonk4EyK6LIyymsY,15349
|
|
87
|
-
hud/tools/bash.py,sha256=SDh4cUs21JyLpyurWkzkPmgelS-Ln6-gB245p-TJStk,5370
|
|
88
|
-
hud/tools/edit.py,sha256=I6XYEinmPQeHFPR4A-3NJEUqDCoUBsedULgWTe2d8iU,13059
|
|
89
|
-
hud/tools/playwright.py,sha256=NlXpUX2ap2aL7lVc3T1Ltz_YxJYOj10xG6kZmaWmW3o,15419
|
|
90
|
-
hud/tools/types.py,sha256=CrI6zRuV2Z2m9i0aHgun-XIPesjsfHZVCE8a80fbF5Y,2806
|
|
91
|
-
hud/tools/utils.py,sha256=j-ctal4VQIbeNo35xhNkRlVhivo728qCqhscj9so600,1497
|
|
92
|
-
hud/tools/computer/__init__.py,sha256=Xiq1tm8kefysfKnThPdtG4kjeymt_WhFCfznzI79YEY,382
|
|
93
|
-
hud/tools/computer/anthropic.py,sha256=fHR5G9fPnuEOfK9cY8vSIUh_iLMM2wiqyBLbqI_ch0o,17789
|
|
94
|
-
hud/tools/computer/hud.py,sha256=LFxNG8kZ5W5fpLcdIYIUevi1QgJp8HnN4BfH3Bjrvrs,16616
|
|
95
|
-
hud/tools/computer/openai.py,sha256=4QJd4iSMXY1st4t6GNqWFWFIxGT3gsqlCUR-7Te5BiE,11484
|
|
96
|
-
hud/tools/computer/settings.py,sha256=idtGZhxcS3CnjV2s15oUjBAtQJqNmL7zcvwj-v9NexU,2845
|
|
97
|
-
hud/tools/executors/__init__.py,sha256=kNC6SfuYhMsucG4FDPcZF0vAUe0rdm0sU3sNlLyjl2M,762
|
|
98
|
-
hud/tools/executors/base.py,sha256=I3xUlPJ2dmRm71hwws8cw_DjeUqmUu2ngFPu-TDFgO8,15020
|
|
99
|
-
hud/tools/executors/pyautogui.py,sha256=YgNQgScqRqz93rq-jVZcetVY5x_xNcq7NtekCYnp8Ro,22982
|
|
100
|
-
hud/tools/executors/xdo.py,sha256=4tHBszgyu8NYDaSYAnOG6apXrhjMzme00dn0SzCiqC4,18647
|
|
101
|
-
hud/tools/executors/tests/__init__.py,sha256=1Q_W-8SYskdnFgDbixa9acQtKIvXNapAGBtf2XaTSBU,33
|
|
102
|
-
hud/tools/executors/tests/test_base_executor.py,sha256=9RkuuK3Ard8xhXeFBi0f-FWN0bbWZKMliuOVZ9JFOyk,12806
|
|
103
|
-
hud/tools/executors/tests/test_pyautogui_executor.py,sha256=0DjSPdV0ELBBLWtNRNBt0vzFZsPNdem_ksj93pwdjR8,6805
|
|
104
|
-
hud/tools/tests/__init__.py,sha256=x985KPu1Zpfn_trs3bpfqzMFbNy6kHMLgnqUYudnzfs,52
|
|
105
|
-
hud/tools/tests/test_base.py,sha256=JGG4mVJviNQOCX4aXA4w3BvcBs_u95sWIXjNXn9d0vI,9265
|
|
106
|
-
hud/tools/tests/test_bash.py,sha256=V-GO9BDlteB5ajvkGFV8U0XbYgyD4CkwPIwU5M7b7ws,5271
|
|
107
|
-
hud/tools/tests/test_bash_extended.py,sha256=304cMWbal7P3xmMTCEK2Cf2liekuw8rMUZJ1VVbUG7o,7197
|
|
108
|
-
hud/tools/tests/test_computer.py,sha256=RIbqWqPHt-mR_YOPvmW-qHANm_EjqShAMmArjNh0eSI,16819
|
|
109
|
-
hud/tools/tests/test_computer_actions.py,sha256=gLTGPaSPUB8Lki2NJo9wHQ_sHQLH8hbVrB2siXZWj2w,1228
|
|
110
|
-
hud/tools/tests/test_edit.py,sha256=mM-2yUDBvxKBCbpnh-y6zuqmwYeqKJokdKnsTViNsb4,9993
|
|
111
|
-
hud/tools/tests/test_init.py,sha256=UnJ8JH5L_-DSeHN62UaOwPm_84wAU1SQB4S54tDUgBY,725
|
|
112
|
-
hud/tools/tests/test_playwright_tool.py,sha256=6fboZgV5sJnh7LlySyfrlBFuYSISloWXgppUjsbEuFg,6919
|
|
113
|
-
hud/tools/tests/test_tools.py,sha256=3fCd410-vzb8HAo_hwkh4mFafECNh3EFBHZTV5jFw3s,4708
|
|
114
|
-
hud/tools/tests/test_utils.py,sha256=THSY74_qK9KkToihgSsi49EpS8BpQ_xaW0cbtvM2sFM,5652
|
|
115
|
-
hud/utils/__init__.py,sha256=KwQ4kTeMXYKATJL49GpxY8QD504ZKeK4ngn46VnU8wA,174
|
|
116
|
-
hud/utils/async_utils.py,sha256=H6kFzadsUXrPU76kGE03OAzhr-4-S_dKG2hEF-Q3XIQ,2474
|
|
117
|
-
hud/utils/design.py,sha256=HD35wwgYnItxr-aOC93MAO_IEGwSIsVtE2WOfbitd58,5155
|
|
118
|
-
hud/utils/mcp.py,sha256=8YrJHbU8fJd6RY4O0jQjTIyv62Ofe0qlTFyVK5S7cEc,1902
|
|
119
|
-
hud/utils/progress.py,sha256=iJFvYxd3tPXlk0TW6hcVarXn_KEJnwFWLIchMqaZuKc,6076
|
|
120
|
-
hud/utils/telemetry.py,sha256=hgydhxQzsE-f_MAq1ZQRTEETts506apsyfP5yGVYiYY,1929
|
|
121
|
-
hud/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
-
hud/utils/tests/test_async_utils.py,sha256=Sraje4i83CcCEmMtLQQA5GKS8BKXsPZ1uPp-fkDXnFM,6118
|
|
123
|
-
hud/utils/tests/test_init.py,sha256=jKwlbj7tz9tOpgBe9cffFGAIsVS47KYkW7DnygcRqYA,400
|
|
124
|
-
hud/utils/tests/test_progress.py,sha256=8kcinr6u6vgvLSWZ4rZlNWz4vL835SUIFwmZj11Q4Qg,7655
|
|
125
|
-
hud/utils/tests/test_telemetry.py,sha256=DNoGqq7zs1fjKA9GsmvT1U8FlekHAVwYD4pxSJvLgYs,2863
|
|
126
|
-
hud/utils/tests/test_version.py,sha256=vwgyzM9FUBbH9by_fUwTmBPLEoQ0cgqZZ_jtEsH-x2E,167
|
|
127
|
-
hud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
-
hud_python-0.4.1.dist-info/METADATA,sha256=Re8FIOUusD1B4-jkdb3lyTJNOwXld4L-BRDMhs8H-CY,19554
|
|
129
|
-
hud_python-0.4.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
130
|
-
hud_python-0.4.1.dist-info/entry_points.txt,sha256=jJbodNFg1m0-CDofe5AHvB4zKBq7sSdP97-ohaQ3ae4,63
|
|
131
|
-
hud_python-0.4.1.dist-info/licenses/LICENSE,sha256=bskFRICmpDj1GtBpnuisjMR6mtQZtkPnRCtTz1CMMB0,1099
|
|
132
|
-
hud_python-0.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|