hud-python 0.6.5__tar.gz → 0.6.6__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.
Files changed (242) hide show
  1. {hud_python-0.6.5 → hud_python-0.6.6}/PKG-INFO +1 -1
  2. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/presets.py +16 -0
  3. {hud_python-0.6.5 → hud_python-0.6.6}/hud/version.py +1 -1
  4. {hud_python-0.6.5 → hud_python-0.6.6}/pyproject.toml +1 -1
  5. {hud_python-0.6.5 → hud_python-0.6.6}/.gitignore +0 -0
  6. {hud_python-0.6.5 → hud_python-0.6.6}/LICENSE +0 -0
  7. {hud_python-0.6.5 → hud_python-0.6.6}/README.md +0 -0
  8. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/a2a-chat/README.md +0 -0
  9. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/a2a-chat/pyproject.toml +0 -0
  10. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/codex-coding/README.md +0 -0
  11. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/codex-coding/pyproject.toml +0 -0
  12. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/connect4-selfplay/README.md +0 -0
  13. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/fireworks-rl-training/README.md +0 -0
  14. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/fireworks-rl-training/pyproject.toml +0 -0
  15. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/rl-training/README.md +0 -0
  16. {hud_python-0.6.5 → hud_python-0.6.6}/cookbooks/rl-training/pyproject.toml +0 -0
  17. {hud_python-0.6.5 → hud_python-0.6.6}/hud/__init__.py +0 -0
  18. {hud_python-0.6.5 → hud_python-0.6.6}/hud/__main__.py +0 -0
  19. {hud_python-0.6.5 → hud_python-0.6.6}/hud/_legacy.py +0 -0
  20. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/__init__.py +0 -0
  21. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/base.py +0 -0
  22. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/browser_use/__init__.py +0 -0
  23. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/browser_use/agent.py +0 -0
  24. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/__init__.py +0 -0
  25. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/agent.py +0 -0
  26. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/sdk/__init__.py +0 -0
  27. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/sdk/agent.py +0 -0
  28. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/sdk/computer_mcp.py +0 -0
  29. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/__init__.py +0 -0
  30. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/base.py +0 -0
  31. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/coding.py +0 -0
  32. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/computer.py +0 -0
  33. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/hosted.py +0 -0
  34. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/mcp_proxy.py +0 -0
  35. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/settings.py +0 -0
  36. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/tests/__init__.py +0 -0
  37. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/claude/tools/tests/test_computer.py +0 -0
  38. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/__init__.py +0 -0
  39. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/agent.py +0 -0
  40. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/settings.py +0 -0
  41. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/__init__.py +0 -0
  42. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/base.py +0 -0
  43. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/coding.py +0 -0
  44. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/computer.py +0 -0
  45. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/filesystem.py +0 -0
  46. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/hosted.py +0 -0
  47. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/mcp_proxy.py +0 -0
  48. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/tests/__init__.py +0 -0
  49. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/gemini/tools/tests/test_computer.py +0 -0
  50. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/misc/__init__.py +0 -0
  51. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/misc/response_automation.py +0 -0
  52. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/__init__.py +0 -0
  53. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/agent.py +0 -0
  54. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/__init__.py +0 -0
  55. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/apply_patch.py +0 -0
  56. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/base.py +0 -0
  57. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/coding.py +0 -0
  58. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/computer.py +0 -0
  59. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/hosted.py +0 -0
  60. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/mcp_proxy.py +0 -0
  61. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/strict_schema.py +0 -0
  62. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/tests/__init__.py +0 -0
  63. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/tests/test_computer.py +0 -0
  64. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai/tools/tests/test_strict_schema.py +0 -0
  65. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai_compatible/__init__.py +0 -0
  66. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai_compatible/agent.py +0 -0
  67. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai_compatible/tools/__init__.py +0 -0
  68. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai_compatible/tools/base.py +0 -0
  69. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai_compatible/tools/filesystem.py +0 -0
  70. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/openai_compatible/tools/mcp_proxy.py +0 -0
  71. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/robot/__init__.py +0 -0
  72. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/robot/_types.py +0 -0
  73. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/robot/adapter.py +0 -0
  74. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/robot/agent.py +0 -0
  75. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/robot/batching.py +0 -0
  76. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/robot/model.py +0 -0
  77. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/robot/record.py +0 -0
  78. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/robot/video.py +0 -0
  79. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/__init__.py +0 -0
  80. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_apply_patch.py +0 -0
  81. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_base.py +0 -0
  82. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_claude_agent.py +0 -0
  83. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_claude_sdk_agent.py +0 -0
  84. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_gemini_agent.py +0 -0
  85. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_openai_agent.py +0 -0
  86. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_openai_compatible_agent.py +0 -0
  87. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_provider_native_tools.py +0 -0
  88. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_tool_agent.py +0 -0
  89. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tests/test_trace.py +0 -0
  90. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tool_agent.py +0 -0
  91. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tools/__init__.py +0 -0
  92. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tools/base.py +0 -0
  93. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tools/hosted.py +0 -0
  94. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tools/mcp.py +0 -0
  95. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tools/rfb.py +0 -0
  96. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/tools/ssh.py +0 -0
  97. {hud_python-0.6.5 → hud_python-0.6.6}/hud/agents/types.py +0 -0
  98. {hud_python-0.6.5 → hud_python-0.6.6}/hud/capabilities/__init__.py +0 -0
  99. {hud_python-0.6.5 → hud_python-0.6.6}/hud/capabilities/base.py +0 -0
  100. {hud_python-0.6.5 → hud_python-0.6.6}/hud/capabilities/cdp.py +0 -0
  101. {hud_python-0.6.5 → hud_python-0.6.6}/hud/capabilities/filetracking.py +0 -0
  102. {hud_python-0.6.5 → hud_python-0.6.6}/hud/capabilities/mcp.py +0 -0
  103. {hud_python-0.6.5 → hud_python-0.6.6}/hud/capabilities/rfb.py +0 -0
  104. {hud_python-0.6.5 → hud_python-0.6.6}/hud/capabilities/robot.py +0 -0
  105. {hud_python-0.6.5 → hud_python-0.6.6}/hud/capabilities/ssh.py +0 -0
  106. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/__init__.py +0 -0
  107. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/__main__.py +0 -0
  108. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/cancel.py +0 -0
  109. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/client.py +0 -0
  110. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/deploy.py +0 -0
  111. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/eval.py +0 -0
  112. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/init.py +0 -0
  113. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/jobs.py +0 -0
  114. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/login.py +0 -0
  115. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/models.py +0 -0
  116. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/serve.py +0 -0
  117. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/sync.py +0 -0
  118. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/task.py +0 -0
  119. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/templates.py +0 -0
  120. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/__init__.py +0 -0
  121. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_cli_init.py +0 -0
  122. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_cli_main.py +0 -0
  123. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_cli_more_wrappers.py +0 -0
  124. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_deploy.py +0 -0
  125. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_eval_bedrock.py +0 -0
  126. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_eval_config.py +0 -0
  127. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_init.py +0 -0
  128. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_main_module.py +0 -0
  129. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/tests/test_sync_export.py +0 -0
  130. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/trace.py +0 -0
  131. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/__init__.py +0 -0
  132. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/api.py +0 -0
  133. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/build_display.py +0 -0
  134. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/build_logs.py +0 -0
  135. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/config.py +0 -0
  136. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/context.py +0 -0
  137. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/display.py +0 -0
  138. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/jobs.py +0 -0
  139. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/registry.py +0 -0
  140. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/source.py +0 -0
  141. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tasks.py +0 -0
  142. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tests/__init__.py +0 -0
  143. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tests/test_build_display.py +0 -0
  144. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tests/test_config.py +0 -0
  145. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tests/test_context.py +0 -0
  146. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tests/test_registry.py +0 -0
  147. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tests/test_source.py +0 -0
  148. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tests/test_tasks.py +0 -0
  149. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/tests/test_version_check.py +0 -0
  150. {hud_python-0.6.5 → hud_python-0.6.6}/hud/cli/utils/version_check.py +0 -0
  151. {hud_python-0.6.5 → hud_python-0.6.6}/hud/clients/__init__.py +0 -0
  152. {hud_python-0.6.5 → hud_python-0.6.6}/hud/clients/client.py +0 -0
  153. {hud_python-0.6.5 → hud_python-0.6.6}/hud/clients/tests/__init__.py +0 -0
  154. {hud_python-0.6.5 → hud_python-0.6.6}/hud/clients/tests/test_connect.py +0 -0
  155. {hud_python-0.6.5 → hud_python-0.6.6}/hud/conftest.py +0 -0
  156. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/__init__.py +0 -0
  157. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/env.py +0 -0
  158. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/file_tracker.py +0 -0
  159. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/file_tracking.py +0 -0
  160. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/legacy.py +0 -0
  161. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/robot/__init__.py +0 -0
  162. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/robot/bridge.py +0 -0
  163. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/robot/endpoint.py +0 -0
  164. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/robot/sim_runner.py +0 -0
  165. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/server.py +0 -0
  166. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/__init__.py +0 -0
  167. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/conftest.py +0 -0
  168. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/test_capability_backing.py +0 -0
  169. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/test_file_tracker.py +0 -0
  170. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/test_file_tracking.py +0 -0
  171. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/test_legacy.py +0 -0
  172. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/test_loader.py +0 -0
  173. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/test_manifest.py +0 -0
  174. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/test_server.py +0 -0
  175. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/tests/test_tunnel.py +0 -0
  176. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/utils.py +0 -0
  177. {hud_python-0.6.5 → hud_python-0.6.6}/hud/environment/workspace.py +0 -0
  178. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/__init__.py +0 -0
  179. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/chat.py +0 -0
  180. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/file_tracking.py +0 -0
  181. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/job.py +0 -0
  182. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/run.py +0 -0
  183. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/runtime.py +0 -0
  184. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/sync.py +0 -0
  185. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/task.py +0 -0
  186. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/taskset.py +0 -0
  187. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/__init__.py +0 -0
  188. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/test_chat.py +0 -0
  189. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/test_docker_provider.py +0 -0
  190. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/test_file_tracking_observer.py +0 -0
  191. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/test_hosted.py +0 -0
  192. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/test_job.py +0 -0
  193. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/test_rollout.py +0 -0
  194. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/test_sync.py +0 -0
  195. {hud_python-0.6.5 → hud_python-0.6.6}/hud/eval/tests/test_task.py +0 -0
  196. {hud_python-0.6.5 → hud_python-0.6.6}/hud/graders/__init__.py +0 -0
  197. {hud_python-0.6.5 → hud_python-0.6.6}/hud/graders/base.py +0 -0
  198. {hud_python-0.6.5 → hud_python-0.6.6}/hud/graders/bash.py +0 -0
  199. {hud_python-0.6.5 → hud_python-0.6.6}/hud/graders/combine.py +0 -0
  200. {hud_python-0.6.5 → hud_python-0.6.6}/hud/graders/judge.py +0 -0
  201. {hud_python-0.6.5 → hud_python-0.6.6}/hud/graders/results.py +0 -0
  202. {hud_python-0.6.5 → hud_python-0.6.6}/hud/graders/text.py +0 -0
  203. {hud_python-0.6.5 → hud_python-0.6.6}/hud/patches/__init__.py +0 -0
  204. {hud_python-0.6.5 → hud_python-0.6.6}/hud/patches/mcp_patches.py +0 -0
  205. {hud_python-0.6.5 → hud_python-0.6.6}/hud/patches/tests/__init__.py +0 -0
  206. {hud_python-0.6.5 → hud_python-0.6.6}/hud/patches/tests/test_warnings.py +0 -0
  207. {hud_python-0.6.5 → hud_python-0.6.6}/hud/patches/warnings.py +0 -0
  208. {hud_python-0.6.5 → hud_python-0.6.6}/hud/py.typed +0 -0
  209. {hud_python-0.6.5 → hud_python-0.6.6}/hud/server.py +0 -0
  210. {hud_python-0.6.5 → hud_python-0.6.6}/hud/settings.py +0 -0
  211. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/__init__.py +0 -0
  212. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/context.py +0 -0
  213. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/exporter.py +0 -0
  214. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/filetracking.py +0 -0
  215. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/instrument.py +0 -0
  216. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/span.py +0 -0
  217. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/tests/__init__.py +0 -0
  218. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/tests/test_exporter.py +0 -0
  219. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/tests/test_filetracking.py +0 -0
  220. {hud_python-0.6.5 → hud_python-0.6.6}/hud/telemetry/tests/test_instrument.py +0 -0
  221. {hud_python-0.6.5 → hud_python-0.6.6}/hud/train/__init__.py +0 -0
  222. {hud_python-0.6.5 → hud_python-0.6.6}/hud/train/base.py +0 -0
  223. {hud_python-0.6.5 → hud_python-0.6.6}/hud/train/client.py +0 -0
  224. {hud_python-0.6.5 → hud_python-0.6.6}/hud/train/types.py +0 -0
  225. {hud_python-0.6.5 → hud_python-0.6.6}/hud/types.py +0 -0
  226. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/__init__.py +0 -0
  227. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/exceptions.py +0 -0
  228. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/gateway.py +0 -0
  229. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/hints.py +0 -0
  230. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/hud_console.py +0 -0
  231. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/modules.py +0 -0
  232. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/platform.py +0 -0
  233. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/requests.py +0 -0
  234. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/serialization.py +0 -0
  235. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/tests/__init__.py +0 -0
  236. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/tests/test_exceptions.py +0 -0
  237. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/tests/test_hints.py +0 -0
  238. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/tests/test_hud_console.py +0 -0
  239. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/tests/test_platform.py +0 -0
  240. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/tests/test_requests.py +0 -0
  241. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/tests/test_serialization.py +0 -0
  242. {hud_python-0.6.5 → hud_python-0.6.6}/hud/utils/time.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hud-python
3
- Version: 0.6.5
3
+ Version: 0.6.6
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
@@ -122,6 +122,14 @@ ENVIRONMENT_PRESETS: tuple[EnvironmentPreset, ...] = (
122
122
  "hud-evals",
123
123
  "worldsim-template",
124
124
  ),
125
+ EnvironmentPreset(
126
+ "robot",
127
+ "🤖",
128
+ "Robot",
129
+ "Robotics: run a VLA policy against a containerized robot sim, graded by task success.",
130
+ "hud-evals",
131
+ "robot-template",
132
+ ),
125
133
  EnvironmentPreset(
126
134
  "videogamebench",
127
135
  "🎮",
@@ -130,6 +138,14 @@ ENVIRONMENT_PRESETS: tuple[EnvironmentPreset, ...] = (
130
138
  "hud-evals",
131
139
  "videogamebench-template",
132
140
  ),
141
+ EnvironmentPreset(
142
+ "arc-agi-3",
143
+ "🧩",
144
+ "ARC-AGI-3",
145
+ "Interactive reasoning benchmark: agents play ARC-AGI-3 games.",
146
+ "hud-evals",
147
+ "ARC-AGI-3",
148
+ ),
133
149
  )
134
150
 
135
151
  PRESETS_BY_ID: dict[str, EnvironmentPreset] = {p.id: p for p in ENVIRONMENT_PRESETS}
@@ -4,4 +4,4 @@ Version information for the HUD SDK.
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
- __version__ = "0.6.5"
7
+ __version__ = "0.6.6"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "hud-python"
3
- version = "0.6.5"
3
+ version = "0.6.6"
4
4
  description = "SDK for the HUD platform."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11, <3.13"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes