hud-python 0.4.1__tar.gz → 0.4.3__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.
Potentially problematic release.
This version of hud-python might be problematic. Click here for more details.
- {hud_python-0.4.1 → hud_python-0.4.3}/.gitignore +44 -45
- {hud_python-0.4.1 → hud_python-0.4.3}/LICENSE +21 -21
- {hud_python-0.4.1 → hud_python-0.4.3}/PKG-INFO +10 -8
- {hud_python-0.4.1 → hud_python-0.4.3}/README.md +386 -384
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/README.md +945 -915
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/README.md +394 -394
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/2048/README.md +102 -102
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/2048/backend/pyproject.toml +8 -8
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/README.md +134 -134
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/todo/README.md +84 -84
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/apps/todo/backend/pyproject.toml +14 -14
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/pyproject.toml +26 -26
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/browser/src/hud_controller/README.md +116 -116
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/remote_browser/README.md +221 -221
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/remote_browser/pyproject.toml +26 -26
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/remote_browser/src/hud_controller/providers/README.md +109 -109
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/text_2048/README.md +101 -101
- {hud_python-0.4.1 → hud_python-0.4.3}/environments/text_2048/pyproject.toml +22 -22
- {hud_python-0.4.1 → hud_python-0.4.3}/examples/README.md +83 -83
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/__init__.py +22 -22
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/__init__.py +13 -15
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/base.py +599 -599
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/claude.py +373 -373
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/langchain.py +261 -250
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/misc/__init__.py +7 -7
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/misc/response_agent.py +82 -80
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/openai.py +352 -352
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/openai_chat_generic.py +154 -154
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/__init__.py +1 -1
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/test_base.py +742 -742
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/test_claude.py +324 -324
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/test_client.py +363 -363
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/agents/tests/test_openai.py +237 -237
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/__init__.py +617 -617
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/__main__.py +8 -8
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/analyze.py +371 -371
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/analyze_metadata.py +230 -230
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/build.py +498 -427
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/clone.py +185 -185
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/cursor.py +92 -92
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/debug.py +392 -392
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/docker_utils.py +83 -83
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/init.py +280 -281
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/interactive.py +353 -353
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/mcp_server.py +764 -756
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/pull.py +330 -336
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/push.py +404 -370
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/remote_runner.py +311 -311
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/runner.py +160 -160
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/__init__.py +3 -3
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_analyze.py +284 -284
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_cli_init.py +265 -265
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_cli_main.py +27 -27
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_clone.py +142 -142
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_cursor.py +253 -253
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_debug.py +453 -453
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_mcp_server.py +139 -139
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/tests/test_utils.py +388 -388
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/cli/utils.py +263 -263
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/README.md +143 -143
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/__init__.py +16 -16
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/base.py +378 -379
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/fastmcp.py +222 -222
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/mcp_use.py +298 -278
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/tests/__init__.py +1 -1
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/tests/test_client_integration.py +111 -111
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/tests/test_fastmcp.py +342 -342
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/tests/test_protocol.py +188 -188
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/utils/__init__.py +1 -1
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/clients/utils/retry_transport.py +160 -160
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/datasets.py +327 -322
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/misc/__init__.py +1 -1
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/misc/claude_plays_pokemon.py +292 -292
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/__init__.py +35 -35
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/collector.py +142 -142
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/config.py +164 -164
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/context.py +536 -536
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/exporters.py +366 -366
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/instrumentation.py +97 -97
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/processors.py +118 -118
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/tests/__init__.py +1 -1
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/otel/tests/test_processors.py +197 -197
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/__init__.py +5 -5
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/context.py +114 -114
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/helper/__init__.py +5 -5
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/low_level.py +132 -132
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/server.py +170 -166
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/server/tests/__init__.py +3 -3
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/settings.py +73 -73
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/__init__.py +5 -5
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/exceptions.py +180 -180
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/requests.py +264 -264
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/tests/test_exceptions.py +157 -157
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/tests/test_requests.py +275 -275
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/__init__.py +25 -25
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/instrument.py +379 -379
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/job.py +309 -309
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/replay.py +74 -74
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/telemetry/trace.py +83 -83
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/__init__.py +33 -33
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/base.py +365 -365
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/bash.py +161 -161
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/__init__.py +15 -15
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/anthropic.py +437 -437
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/hud.py +376 -376
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/openai.py +295 -295
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/computer/settings.py +82 -82
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/edit.py +314 -314
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/__init__.py +30 -30
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/base.py +539 -539
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/pyautogui.py +621 -621
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/tests/__init__.py +1 -1
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/tests/test_base_executor.py +338 -338
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/tests/test_pyautogui_executor.py +165 -165
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/executors/xdo.py +511 -511
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/playwright.py +412 -412
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/__init__.py +3 -3
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_base.py +282 -282
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_bash.py +158 -158
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_bash_extended.py +197 -197
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_computer.py +425 -425
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_computer_actions.py +34 -34
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_edit.py +259 -259
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_init.py +27 -27
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_playwright_tool.py +183 -183
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_tools.py +145 -145
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/tests/test_utils.py +156 -156
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/types.py +72 -72
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/tools/utils.py +50 -50
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/types.py +136 -136
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/__init__.py +10 -10
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/async_utils.py +65 -65
- hud_python-0.4.3/hud/utils/design.py +236 -0
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/mcp.py +55 -55
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/progress.py +149 -149
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/telemetry.py +66 -66
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_async_utils.py +173 -173
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_init.py +17 -17
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_progress.py +261 -261
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_telemetry.py +82 -82
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/test_version.py +8 -8
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/version.py +7 -7
- {hud_python-0.4.1 → hud_python-0.4.3}/pyproject.toml +232 -240
- {hud_python-0.4.1 → hud_python-0.4.3}/rl/README.md +432 -419
- {hud_python-0.4.1 → hud_python-0.4.3}/rl/pyproject.toml +16 -16
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint/eslintrc/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint/eslintrc/README.md +0 -115
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint/js/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint/js/README.md +0 -57
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint-community/eslint-utils/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint-community/eslint-utils/README.md +0 -37
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint-community/regexpp/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@eslint-community/regexpp/README.md +0 -177
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/config-array/LICENSE +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/config-array/README.md +0 -342
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/module-importer/LICENSE +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/module-importer/README.md +0 -80
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/object-schema/LICENSE +0 -29
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@humanwhocodes/object-schema/README.md +0 -234
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@isaacs/cliui/README.md +0 -143
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/gen-mapping/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/gen-mapping/README.md +0 -227
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/resolve-uri/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/resolve-uri/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/sourcemap-codec/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/sourcemap-codec/README.md +0 -264
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/trace-mapping/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@jridgewell/trace-mapping/README.md +0 -348
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@next/env/README.md +0 -3
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@next/eslint-plugin-next/README.md +0 -4
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@next/swc-linux-x64-gnu/README.md +0 -3
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@next/swc-linux-x64-musl/README.md +0 -3
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.scandir/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.scandir/README.md +0 -171
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.stat/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.stat/README.md +0 -126
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.walk/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nodelib/fs.walk/README.md +0 -215
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@nolyfill/is-core-module/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@pkgjs/parseargs/LICENSE +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@pkgjs/parseargs/README.md +0 -413
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@rtsao/scc/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@rtsao/scc/README.md +0 -49
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@rushstack/eslint-patch/LICENSE +0 -24
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@rushstack/eslint-patch/README.md +0 -252
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@swc/helpers/LICENSE +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/json5/README.md +0 -18
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/node/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/node/README.md +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/prop-types/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/prop-types/README.md +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/react/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/react/README.md +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/react-dom/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@types/react-dom/README.md +0 -16
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/parser/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/parser/README.md +0 -12
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/scope-manager/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/scope-manager/README.md +0 -10
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/types/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/types/README.md +0 -12
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/LICENSE +0 -26
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/README.md +0 -14
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/README.md +0 -135
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/README.md +0 -454
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/visitor-keys/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@typescript-eslint/visitor-keys/README.md +0 -10
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@ungap/structured-clone/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@ungap/structured-clone/README.md +0 -95
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@unrs/resolver-binding-linux-x64-gnu/README.md +0 -3
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/@unrs/resolver-binding-linux-x64-musl/README.md +0 -3
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/acorn/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/acorn/README.md +0 -282
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/acorn-jsx/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/acorn-jsx/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ajv/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ajv/README.md +0 -1497
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ajv/lib/dotjs/README.md +0 -3
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/any-promise/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/any-promise/README.md +0 -161
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/anymatch/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/anymatch/README.md +0 -87
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/arg/README.md +0 -317
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/argparse/LICENSE +0 -254
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/argparse/README.md +0 -84
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/aria-query/LICENSE +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/aria-query/README.md +0 -195
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array-buffer-byte-length/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array-buffer-byte-length/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array-includes/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array-includes/README.md +0 -105
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.findlast/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.findlast/README.md +0 -74
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.findlastindex/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.findlastindex/README.md +0 -74
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.flat/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.flat/README.md +0 -75
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.flatmap/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.flatmap/README.md +0 -82
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.tosorted/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/array.prototype.tosorted/README.md +0 -71
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/arraybuffer.prototype.slice/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/arraybuffer.prototype.slice/README.md +0 -61
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ast-types-flow/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ast-types-flow/README.md +0 -99
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/async-function/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/async-function/README.md +0 -51
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/autoprefixer/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/autoprefixer/README.md +0 -66
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/available-typed-arrays/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/available-typed-arrays/README.md +0 -55
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axe-core/LICENSE +0 -362
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axe-core/README.md +0 -190
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axe-core/locales/README.md +0 -9
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axobject-query/LICENSE +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/axobject-query/README.md +0 -404
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/balanced-match/README.md +0 -97
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/brace-expansion/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/brace-expansion/README.md +0 -129
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/braces/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/braces/README.md +0 -586
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/browserslist/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/browserslist/README.md +0 -67
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/busboy/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/busboy/README.md +0 -191
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bind/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bind/README.md +0 -64
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bind-apply-helpers/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bind-apply-helpers/README.md +0 -62
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bound/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/call-bound/README.md +0 -53
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/camelcase-css/README.md +0 -27
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/caniuse-lite/LICENSE +0 -395
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/caniuse-lite/README.md +0 -6
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/chokidar/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/chokidar/README.md +0 -308
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/chokidar/node_modules/glob-parent/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/chokidar/node_modules/glob-parent/README.md +0 -137
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/color-convert/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/color-convert/README.md +0 -68
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/color-name/LICENSE +0 -8
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/color-name/README.md +0 -11
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/commander/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/concat-map/LICENSE +0 -18
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/cross-spawn/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/cross-spawn/README.md +0 -89
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/cssesc/README.md +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/csstype/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/csstype/README.md +0 -277
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/damerau-levenshtein/LICENSE +0 -25
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/damerau-levenshtein/README.md +0 -47
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-buffer/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-buffer/README.md +0 -43
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-byte-length/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-byte-length/README.md +0 -43
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-byte-offset/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/data-view-byte-offset/README.md +0 -43
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/debug/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/debug/README.md +0 -481
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/deep-is/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/define-data-property/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/define-data-property/README.md +0 -67
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/define-properties/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/define-properties/README.md +0 -84
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/didyoumean/LICENSE +0 -14
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/didyoumean/README.md +0 -134
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/dlv/README.md +0 -76
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/doctrine/LICENSE +0 -177
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/doctrine/README.md +0 -165
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/dunder-proto/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/dunder-proto/README.md +0 -54
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eastasianwidth/README.md +0 -32
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/electron-to-chromium/LICENSE +0 -5
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/electron-to-chromium/README.md +0 -186
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/emoji-regex/README.md +0 -137
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-abstract/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-abstract/README.md +0 -43
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-define-property/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-define-property/README.md +0 -49
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-errors/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-errors/README.md +0 -55
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-iterator-helpers/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-iterator-helpers/README.md +0 -110
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-object-atoms/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-object-atoms/README.md +0 -63
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-set-tostringtag/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-set-tostringtag/README.md +0 -53
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-shim-unscopables/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-shim-unscopables/README.md +0 -57
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-to-primitive/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/es-to-primitive/README.md +0 -52
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint/README.md +0 -304
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-node/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-node/README.md +0 -44
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-node/node_modules/debug/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-node/node_modules/debug/README.md +0 -437
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-typescript/LICENSE +0 -5
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-import-resolver-typescript/README.md +0 -346
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-module-utils/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-module-utils/node_modules/debug/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-module-utils/node_modules/debug/README.md +0 -437
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/README.md +0 -612
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/memo-parser/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/memo-parser/README.md +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/debug/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/debug/README.md +0 -437
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/doctrine/LICENSE +0 -177
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/doctrine/README.md +0 -165
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/semver/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-import/node_modules/semver/README.md +0 -443
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-jsx-a11y/README.md +0 -423
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/README.md +0 -423
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/doctrine/LICENSE +0 -177
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/doctrine/README.md +0 -165
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/resolve/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/semver/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react/node_modules/semver/README.md +0 -443
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react-hooks/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-plugin-react-hooks/README.md +0 -75
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-scope/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-scope/README.md +0 -70
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-visitor-keys/LICENSE +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/eslint-visitor-keys/README.md +0 -105
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/espree/LICENSE +0 -25
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/espree/README.md +0 -244
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/esquery/README.md +0 -27
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/esrecurse/README.md +0 -171
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/estraverse/README.md +0 -153
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/esutils/README.md +0 -174
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-deep-equal/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-deep-equal/README.md +0 -96
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-glob/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-glob/README.md +0 -830
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-glob/node_modules/glob-parent/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-glob/node_modules/glob-parent/README.md +0 -137
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-json-stable-stringify/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-json-stable-stringify/README.md +0 -131
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fast-levenshtein/README.md +0 -104
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fastq/LICENSE +0 -13
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fastq/README.md +0 -312
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/file-entry-cache/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/file-entry-cache/README.md +0 -112
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fill-range/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fill-range/README.md +0 -237
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/flat-cache/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/flat-cache/README.md +0 -75
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/flatted/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/flatted/README.md +0 -115
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/for-each/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/for-each/README.md +0 -39
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/foreground-child/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/foreground-child/README.md +0 -128
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fraction.js/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fraction.js/README.md +0 -466
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fs.realpath/LICENSE +0 -43
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/fs.realpath/README.md +0 -33
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/function-bind/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/function-bind/README.md +0 -46
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/function.prototype.name/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/function.prototype.name/README.md +0 -55
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/functions-have-names/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/functions-have-names/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-intrinsic/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-intrinsic/README.md +0 -71
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-proto/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-proto/README.md +0 -50
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-symbol-description/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-symbol-description/README.md +0 -43
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-tsconfig/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/get-tsconfig/README.md +0 -235
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/README.md +0 -1214
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/node_modules/brace-expansion/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/node_modules/brace-expansion/README.md +0 -135
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/node_modules/minimatch/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob/node_modules/minimatch/README.md +0 -454
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob-parent/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/glob-parent/README.md +0 -134
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/globalthis/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/globalthis/README.md +0 -70
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/gopd/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/gopd/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/graceful-fs/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/graceful-fs/README.md +0 -143
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/graphemer/LICENSE +0 -18
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/graphemer/README.md +0 -132
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-bigints/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-bigints/README.md +0 -39
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-property-descriptors/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-property-descriptors/README.md +0 -43
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-proto/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-proto/README.md +0 -57
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-symbols/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-symbols/README.md +0 -46
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-tostringtag/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/has-tostringtag/README.md +0 -46
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/hasown/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/hasown/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ignore/README.md +0 -412
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/imurmurhash/README.md +0 -122
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/inflight/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/inflight/README.md +0 -37
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/inherits/LICENSE +0 -16
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/inherits/README.md +0 -42
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/internal-slot/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/internal-slot/README.md +0 -58
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-array-buffer/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-array-buffer/README.md +0 -56
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-async-function/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-async-function/README.md +0 -41
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-bigint/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-bigint/README.md +0 -44
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-boolean-object/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-boolean-object/README.md +0 -57
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-bun-module/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-bun-module/README.md +0 -79
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-callable/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-callable/README.md +0 -83
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-core-module/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-core-module/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-data-view/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-data-view/README.md +0 -69
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-date-object/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-date-object/README.md +0 -52
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-extglob/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-extglob/README.md +0 -107
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-finalizationregistry/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-finalizationregistry/README.md +0 -54
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-generator-function/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-generator-function/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-glob/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-glob/README.md +0 -206
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-map/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-map/README.md +0 -52
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-negative-zero/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-negative-zero/README.md +0 -54
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-number/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-number/README.md +0 -187
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-number-object/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-number-object/README.md +0 -55
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-regex/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-regex/README.md +0 -52
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-set/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-set/README.md +0 -50
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-shared-array-buffer/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-shared-array-buffer/README.md +0 -56
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-string/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-string/README.md +0 -56
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-symbol/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-symbol/README.md +0 -45
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-typed-array/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-typed-array/README.md +0 -70
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakmap/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakmap/README.md +0 -50
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakref/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakref/README.md +0 -52
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakset/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/is-weakset/README.md +0 -50
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/isarray/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/isarray/README.md +0 -38
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/isexe/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/isexe/README.md +0 -51
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/iterator.prototype/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/iterator.prototype/README.md +0 -35
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/jackspeak/README.md +0 -348
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/jiti/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/jiti/README.md +0 -164
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/js-tokens/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/js-tokens/README.md +0 -240
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/js-yaml/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/js-yaml/README.md +0 -246
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-buffer/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-buffer/README.md +0 -24
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-schema-traverse/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-schema-traverse/README.md +0 -83
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json-stable-stringify-without-jsonify/LICENSE +0 -18
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/json5/README.md +0 -234
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/jsx-ast-utils/README.md +0 -298
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/keyv/README.md +0 -429
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/language-subtag-registry/README.md +0 -25
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/language-tags/README.md +0 -269
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/levn/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/levn/README.md +0 -196
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lilconfig/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lines-and-columns/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lines-and-columns/README.md +0 -33
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lodash.merge/LICENSE +0 -47
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lodash.merge/README.md +0 -18
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/loose-envify/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/loose-envify/README.md +0 -45
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lru-cache/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/lru-cache/README.md +0 -331
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/math-intrinsics/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/math-intrinsics/README.md +0 -50
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/merge2/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/merge2/README.md +0 -144
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/micromatch/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/micromatch/README.md +0 -1024
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minimatch/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minimatch/README.md +0 -230
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minimist/LICENSE +0 -18
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minimist/README.md +0 -121
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minipass/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/minipass/README.md +0 -825
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/mz/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/mz/README.md +0 -106
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/nanoid/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/nanoid/README.md +0 -39
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/napi-postinstall/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/napi-postinstall/README.md +0 -147
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/natural-compare/README.md +0 -125
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/next/README.md +0 -67
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/next/node_modules/postcss/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/next/node_modules/postcss/README.md +0 -28
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/node-releases/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/node-releases/README.md +0 -12
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/normalize-path/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/normalize-path/README.md +0 -127
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object-hash/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object-inspect/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object-keys/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object-keys/README.md +0 -76
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.assign/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.assign/README.md +0 -136
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.entries/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.entries/README.md +0 -58
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.fromentries/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.fromentries/README.md +0 -50
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.groupby/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.groupby/README.md +0 -79
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.values/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/object.values/README.md +0 -58
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/once/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/once/README.md +0 -79
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/optionator/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/optionator/README.md +0 -238
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/own-keys/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/own-keys/README.md +0 -45
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/path-parse/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/path-parse/README.md +0 -42
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/path-scurry/README.md +0 -636
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/picocolors/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/picocolors/README.md +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/picomatch/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/picomatch/README.md +0 -708
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/pirates/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/pirates/README.md +0 -73
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/possible-typed-array-names/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/possible-typed-array-names/README.md +0 -50
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss/README.md +0 -29
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-import/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-import/README.md +0 -244
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-js/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-js/README.md +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-nested/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-nested/README.md +0 -85
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-selector-parser/README.md +0 -49
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-value-parser/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/postcss-value-parser/README.md +0 -263
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/prelude-ls/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/prelude-ls/README.md +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/prop-types/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/prop-types/README.md +0 -302
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/punycode/README.md +0 -148
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/queue-microtask/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/queue-microtask/README.md +0 -90
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react/README.md +0 -37
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react-dom/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react-dom/README.md +0 -60
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react-is/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/react-is/README.md +0 -104
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/read-cache/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/read-cache/README.md +0 -46
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/readdirp/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/readdirp/README.md +0 -122
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/reflect.getprototypeof/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/reflect.getprototypeof/README.md +0 -77
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/regexp.prototype.flags/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/regexp.prototype.flags/README.md +0 -55
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/resolve/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/resolve-pkg-maps/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/resolve-pkg-maps/README.md +0 -216
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/reusify/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/reusify/README.md +0 -139
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/rimraf/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/rimraf/README.md +0 -101
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/rimraf/node_modules/glob/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/rimraf/node_modules/glob/README.md +0 -378
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/run-parallel/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/run-parallel/README.md +0 -85
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-array-concat/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-array-concat/README.md +0 -53
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-push-apply/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-push-apply/README.md +0 -59
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-regex-test/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/safe-regex-test/README.md +0 -46
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/scheduler/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/scheduler/README.md +0 -9
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/semver/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/semver/README.md +0 -664
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-function-length/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-function-length/README.md +0 -56
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-function-name/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-function-name/README.md +0 -61
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-proto/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/set-proto/README.md +0 -52
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel/README.md +0 -61
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-list/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-list/README.md +0 -62
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-map/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-map/README.md +0 -62
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-weakmap/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/side-channel-weakmap/README.md +0 -62
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/signal-exit/README.md +0 -74
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/source-map-js/LICENSE +0 -28
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/source-map-js/README.md +0 -765
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/stable-hash/README.md +0 -144
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/stop-iteration-iterator/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/stop-iteration-iterator/README.md +0 -42
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/streamsearch/LICENSE +0 -19
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/streamsearch/README.md +0 -95
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +0 -73
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.includes/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.includes/README.md +0 -48
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.matchall/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.matchall/README.md +0 -73
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.repeat/README.md +0 -43
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trim/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trim/README.md +0 -48
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trimend/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trimend/README.md +0 -46
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trimstart/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/string.prototype.trimstart/README.md +0 -46
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/sucrase/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/sucrase/README.md +0 -295
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/supports-preserve-symlinks-flag/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/supports-preserve-symlinks-flag/README.md +0 -42
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/swr/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/swr/README.md +0 -102
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/README.md +0 -40
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/lib/css/LICENSE +0 -25
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/lib/postcss-plugins/nesting/README.md +0 -42
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/lib/value-parser/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/lib/value-parser/README.md +0 -3
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/node_modules/postcss-load-config/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/node_modules/postcss-load-config/README.md +0 -466
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/src/css/LICENSE +0 -25
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/src/postcss-plugins/nesting/README.md +0 -42
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/src/value-parser/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tailwindcss/src/value-parser/README.md +0 -3
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/text-table/LICENSE +0 -18
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/thenify/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/thenify/README.md +0 -120
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/thenify-all/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/thenify-all/README.md +0 -66
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/README.md +0 -72
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/node_modules/fdir/LICENSE +0 -7
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/node_modules/fdir/README.md +0 -91
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/node_modules/picomatch/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tinyglobby/node_modules/picomatch/README.md +0 -738
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/to-regex-range/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/to-regex-range/README.md +0 -305
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ts-api-utils/README.md +0 -83
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ts-interface-checker/LICENSE +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/ts-interface-checker/README.md +0 -185
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tsconfig-paths/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tsconfig-paths/README.md +0 -268
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/tslib/README.md +0 -164
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/type-check/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/type-check/README.md +0 -210
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-buffer/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-buffer/README.md +0 -42
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-byte-length/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-byte-length/README.md +0 -70
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-byte-offset/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-byte-offset/README.md +0 -70
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-length/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typed-array-length/README.md +0 -64
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/typescript/README.md +0 -50
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/unbox-primitive/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/unbox-primitive/README.md +0 -47
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/undici-types/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/undici-types/README.md +0 -6
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/unrs-resolver/README.md +0 -356
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/update-browserslist-db/LICENSE +0 -20
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/update-browserslist-db/README.md +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/uri-js/LICENSE +0 -11
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/uri-js/README.md +0 -203
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/use-sync-external-store/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/use-sync-external-store/README.md +0 -5
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/util-deprecate/LICENSE +0 -24
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/util-deprecate/README.md +0 -53
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which/README.md +0 -54
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-boxed-primitive/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-boxed-primitive/README.md +0 -73
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-builtin-type/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-builtin-type/README.md +0 -67
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-collection/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-collection/README.md +0 -65
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-typed-array/LICENSE +0 -22
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/which-typed-array/README.md +0 -70
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/word-wrap/LICENSE +0 -21
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/word-wrap/README.md +0 -201
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +0 -73
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/wrappy/LICENSE +0 -15
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/wrappy/README.md +0 -36
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/yaml/LICENSE +0 -13
- hud_python-0.4.1/environments/browser/apps/todo/frontend/node_modules/yaml/README.md +0 -190
- hud_python-0.4.1/hud/agents/art.py +0 -101
- hud_python-0.4.1/hud/utils/design.py +0 -168
- hud_python-0.4.1/test_env/Lib/site-packages/PyYAML-6.0.2.dist-info/LICENSE +0 -20
- hud_python-0.4.1/test_env/Lib/site-packages/aiohappyeyeballs-2.6.1.dist-info/LICENSE +0 -279
- hud_python-0.4.1/test_env/Lib/site-packages/annotated_types-0.7.0.dist-info/licenses/LICENSE +0 -21
- hud_python-0.4.1/test_env/Lib/site-packages/attrs-25.3.0.dist-info/licenses/LICENSE +0 -21
- hud_python-0.4.1/test_env/Lib/site-packages/backoff-2.2.1.dist-info/LICENSE +0 -21
- hud_python-0.4.1/test_env/Lib/site-packages/certifi-2025.8.3.dist-info/licenses/LICENSE +0 -20
- hud_python-0.4.1/test_env/Lib/site-packages/charset_normalizer-3.4.2.dist-info/licenses/LICENSE +0 -21
- hud_python-0.4.1/test_env/Lib/site-packages/distro-1.9.0.dist-info/LICENSE +0 -202
- hud_python-0.4.1/test_env/Lib/site-packages/frozenlist-1.7.0.dist-info/licenses/LICENSE +0 -201
- hud_python-0.4.1/test_env/Lib/site-packages/greenlet-3.2.3.dist-info/licenses/LICENSE +0 -30
- hud_python-0.4.1/test_env/Lib/site-packages/httpx_sse-0.4.1.dist-info/licenses/LICENSE +0 -21
- hud_python-0.4.1/test_env/Lib/site-packages/multidict-6.6.3.dist-info/licenses/LICENSE +0 -13
- hud_python-0.4.1/test_env/Lib/site-packages/packaging-25.0.dist-info/licenses/LICENSE +0 -3
- hud_python-0.4.1/test_env/Lib/site-packages/pathspec-0.12.1.dist-info/LICENSE +0 -373
- hud_python-0.4.1/test_env/Lib/site-packages/propcache-0.3.2.dist-info/licenses/LICENSE +0 -202
- hud_python-0.4.1/test_env/Lib/site-packages/python_dotenv-1.1.1.dist-info/licenses/LICENSE +0 -27
- hud_python-0.4.1/test_env/Lib/site-packages/rpds_py-0.26.0.dist-info/licenses/LICENSE +0 -19
- hud_python-0.4.1/test_env/Lib/site-packages/six-1.17.0.dist-info/LICENSE +0 -18
- hud_python-0.4.1/test_env/Lib/site-packages/sniffio-1.3.1.dist-info/LICENSE +0 -3
- hud_python-0.4.1/test_env/Lib/site-packages/sqlalchemy-2.0.42.dist-info/licenses/LICENSE +0 -19
- hud_python-0.4.1/test_env/Lib/site-packages/tenacity-9.1.2.dist-info/licenses/LICENSE +0 -202
- hud_python-0.4.1/test_env/Lib/site-packages/typing_extensions-4.14.1.dist-info/licenses/LICENSE +0 -279
- hud_python-0.4.1/test_env/Lib/site-packages/typing_inspection-0.4.1.dist-info/licenses/LICENSE +0 -21
- hud_python-0.4.1/test_env/Lib/site-packages/websockets-15.0.1.dist-info/LICENSE +0 -24
- hud_python-0.4.1/test_env/Lib/site-packages/wrapt-1.17.2.dist-info/LICENSE +0 -24
- hud_python-0.4.1/test_env/Lib/site-packages/yarl-1.20.1.dist-info/licenses/LICENSE +0 -202
- hud_python-0.4.1/test_env/Lib/site-packages/zstandard-0.23.0.dist-info/LICENSE +0 -27
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/py.typed +0 -0
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/shared/tests/__init__.py +0 -0
- {hud_python-0.4.1 → hud_python-0.4.3}/hud/utils/tests/__init__.py +0 -0
|
@@ -1,46 +1,45 @@
|
|
|
1
|
-
.venv
|
|
2
|
-
.vscode
|
|
3
|
-
venv
|
|
4
|
-
.env
|
|
5
|
-
__pycache__
|
|
6
|
-
*.pyc
|
|
7
|
-
.pytest_cache
|
|
8
|
-
dist/
|
|
9
|
-
build/
|
|
10
|
-
*.egg-info/
|
|
11
|
-
uv.lock
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
*.
|
|
16
|
-
*.
|
|
17
|
-
*.
|
|
18
|
-
*.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
wandb/
|
|
1
|
+
.venv
|
|
2
|
+
.vscode
|
|
3
|
+
venv
|
|
4
|
+
.env
|
|
5
|
+
__pycache__
|
|
6
|
+
*.pyc
|
|
7
|
+
.pytest_cache
|
|
8
|
+
dist/
|
|
9
|
+
build/
|
|
10
|
+
*.egg-info/
|
|
11
|
+
uv.lock
|
|
12
|
+
|
|
13
|
+
# Media files
|
|
14
|
+
*.jpg
|
|
15
|
+
*.jpeg
|
|
16
|
+
*.bmp
|
|
17
|
+
*.tiff
|
|
18
|
+
*.ico
|
|
19
|
+
|
|
20
|
+
# DS-Store
|
|
21
|
+
.DS_Store
|
|
22
|
+
|
|
23
|
+
# Test files
|
|
24
|
+
/*.ipynb
|
|
25
|
+
test.json
|
|
26
|
+
TODO.md
|
|
27
|
+
|
|
28
|
+
.coverage
|
|
29
|
+
|
|
30
|
+
*.log
|
|
31
|
+
|
|
32
|
+
/ref/
|
|
33
|
+
|
|
34
|
+
.cursor/
|
|
35
|
+
|
|
36
|
+
/dev/
|
|
37
|
+
|
|
38
|
+
.claude
|
|
39
|
+
CLAUDE.md
|
|
40
|
+
|
|
41
|
+
*.csv
|
|
42
|
+
|
|
43
|
+
# RL
|
|
44
|
+
wandb/
|
|
46
45
|
outputs/
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Human Union Data, Inc
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Human Union Data, Inc
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hud-python
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: SDK for the HUD platform.
|
|
5
5
|
Project-URL: Homepage, https://github.com/hud-evals/hud-python
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/hud-evals/hud-python/issues
|
|
@@ -114,10 +114,10 @@ OSS RL environment + evals toolkit. Wrap software as environments, run benchmark
|
|
|
114
114
|
|
|
115
115
|
## Highlights
|
|
116
116
|
|
|
117
|
-
- 🚀 **[MCP
|
|
117
|
+
- 🚀 **[MCP environment skeleton](https://docs.hud.so/core-concepts/mcp-protocol)** – any agent can call any environment.
|
|
118
118
|
- ⚡️ **[Live telemetry](https://app.hud.so)** – inspect every tool call, observation, and reward in real time.
|
|
119
119
|
- 🗂️ **[Public benchmarks](https://app.hud.so/leaderboards)** – OSWorld-Verified, SheetBench-50, and more.
|
|
120
|
-
- 🌱 **[Reinforcement learning built-in](rl/)** – Verifiers gym pipelines for GRPO
|
|
120
|
+
- 🌱 **[Reinforcement learning built-in](rl/)** – Verifiers gym pipelines for GRPO on any environment.
|
|
121
121
|
- 🌐 **[Cloud browsers](environments/remote_browser/)** – AnchorBrowser, Steel, BrowserBase integrations for browser automation.
|
|
122
122
|
- 🛠️ **[Hot-reload dev loop](environments/README.md#phase-5-hot-reload-development-with-cursor-agent)** – `hud dev` for iterating on environments without rebuilds.
|
|
123
123
|
|
|
@@ -152,7 +152,7 @@ For a tutorial that explains the agent and evaluation design, run ([see quicksta
|
|
|
152
152
|
uvx hud-python quickstart
|
|
153
153
|
```
|
|
154
154
|
|
|
155
|
-
Or just write your own agent loop (more [examples here](examples/))
|
|
155
|
+
Or just write your own agent loop (more [examples here](examples/)).
|
|
156
156
|
|
|
157
157
|
```python
|
|
158
158
|
import asyncio, hud, os
|
|
@@ -196,11 +196,13 @@ async def main() -> None:
|
|
|
196
196
|
asyncio.run(main())
|
|
197
197
|
```
|
|
198
198
|
|
|
199
|
-
|
|
199
|
+
The above example let's the agent play 2048 ([See replay](https://app.hud.so/trace/6feed7bd-5f67-4d66-b77f-eb1e3164604f))
|
|
200
|
+
|
|
201
|
+

|
|
200
202
|
|
|
201
203
|
## Reinforcement Learning with GRPO
|
|
202
204
|
|
|
203
|
-
This is a Qwen-2.5-3B agent training a policy on the [`text-2048`](environments/text_2048/) environment using [Verifiers](rl/
|
|
205
|
+
This is a Qwen-2.5-3B agent training a policy on the [`text-2048`](environments/text_2048/) environment (see above) using [Verifiers](rl/):
|
|
204
206
|
|
|
205
207
|

|
|
206
208
|
|
|
@@ -208,8 +210,8 @@ To start training, check out the [`rl/README.md`](rl/README.md) folder:
|
|
|
208
210
|
|
|
209
211
|
```bash
|
|
210
212
|
git clone https://github.com/hud-evals/hud-python
|
|
211
|
-
cd hud-python
|
|
212
|
-
python
|
|
213
|
+
cd hud-python/rl
|
|
214
|
+
python train_2048.py
|
|
213
215
|
```
|
|
214
216
|
|
|
215
217
|
Any hud MCP environment and evaluation works with our RL pipeline. Even our remote configurations!
|