hud-python 0.3.0__py3-none-any.whl → 0.3.2__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.

Files changed (54) hide show
  1. hud/__init__.py +7 -4
  2. hud/adapters/common/adapter.py +14 -3
  3. hud/adapters/common/tests/test_adapter.py +16 -4
  4. hud/datasets.py +188 -0
  5. hud/env/docker_client.py +14 -2
  6. hud/env/local_docker_client.py +28 -6
  7. hud/gym.py +0 -9
  8. hud/{mcp_agent → mcp}/__init__.py +2 -0
  9. hud/mcp/base.py +631 -0
  10. hud/{mcp_agent → mcp}/claude.py +52 -47
  11. hud/mcp/client.py +312 -0
  12. hud/{mcp_agent → mcp}/langchain.py +52 -33
  13. hud/{mcp_agent → mcp}/openai.py +56 -40
  14. hud/{mcp_agent → mcp}/tests/test_base.py +129 -54
  15. hud/mcp/tests/test_claude.py +294 -0
  16. hud/mcp/tests/test_client.py +324 -0
  17. hud/mcp/tests/test_openai.py +238 -0
  18. hud/settings.py +6 -0
  19. hud/task.py +2 -88
  20. hud/taskset.py +2 -23
  21. hud/telemetry/__init__.py +5 -0
  22. hud/telemetry/_trace.py +180 -17
  23. hud/telemetry/context.py +79 -0
  24. hud/telemetry/exporter.py +165 -6
  25. hud/telemetry/job.py +141 -0
  26. hud/telemetry/tests/test_trace.py +36 -25
  27. hud/tools/__init__.py +14 -1
  28. hud/tools/computer/hud.py +13 -0
  29. hud/tools/executors/__init__.py +19 -2
  30. hud/tools/executors/pyautogui.py +84 -50
  31. hud/tools/executors/tests/test_pyautogui_executor.py +4 -1
  32. hud/tools/playwright_tool.py +73 -67
  33. hud/tools/tests/test_edit.py +8 -1
  34. hud/tools/tests/test_tools.py +3 -0
  35. hud/trajectory.py +5 -1
  36. hud/utils/tests/test_version.py +1 -1
  37. hud/version.py +1 -1
  38. {hud_python-0.3.0.dist-info → hud_python-0.3.2.dist-info}/METADATA +20 -14
  39. {hud_python-0.3.0.dist-info → hud_python-0.3.2.dist-info}/RECORD +42 -47
  40. hud/evaluators/__init__.py +0 -9
  41. hud/evaluators/base.py +0 -32
  42. hud/evaluators/inspect.py +0 -24
  43. hud/evaluators/judge.py +0 -189
  44. hud/evaluators/match.py +0 -156
  45. hud/evaluators/remote.py +0 -65
  46. hud/evaluators/tests/__init__.py +0 -0
  47. hud/evaluators/tests/test_inspect.py +0 -12
  48. hud/evaluators/tests/test_judge.py +0 -231
  49. hud/evaluators/tests/test_match.py +0 -115
  50. hud/evaluators/tests/test_remote.py +0 -98
  51. hud/mcp_agent/base.py +0 -723
  52. /hud/{mcp_agent → mcp}/tests/__init__.py +0 -0
  53. {hud_python-0.3.0.dist-info → hud_python-0.3.2.dist-info}/WHEEL +0 -0
  54. {hud_python-0.3.0.dist-info → hud_python-0.3.2.dist-info}/licenses/LICENSE +0 -0
File without changes