hud-python 0.1.1__tar.gz → 0.1.2a0__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.

Files changed (46) hide show
  1. {hud_python-0.1.1 → hud_python-0.1.2a0}/.gitignore +2 -2
  2. {hud_python-0.1.1 → hud_python-0.1.2a0}/PKG-INFO +1 -1
  3. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/__init__.py +1 -1
  4. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/adapters/common/types.py +5 -0
  5. {hud_python-0.1.1 → hud_python-0.1.2a0}/pyproject.toml +1 -1
  6. {hud_python-0.1.1 → hud_python-0.1.2a0}/tests/test_import.py +1 -1
  7. {hud_python-0.1.1 → hud_python-0.1.2a0}/.env.example +0 -0
  8. {hud_python-0.1.1 → hud_python-0.1.2a0}/.github/workflows/ci.yml +0 -0
  9. {hud_python-0.1.1 → hud_python-0.1.2a0}/.github/workflows/release.yml +0 -0
  10. {hud_python-0.1.1 → hud_python-0.1.2a0}/LICENSE +0 -0
  11. {hud_python-0.1.1 → hud_python-0.1.2a0}/MANIFEST.in +0 -0
  12. {hud_python-0.1.1 → hud_python-0.1.2a0}/README.md +0 -0
  13. {hud_python-0.1.1 → hud_python-0.1.2a0}/agent/base.py +0 -0
  14. {hud_python-0.1.1 → hud_python-0.1.2a0}/agent/claude.py +0 -0
  15. {hud_python-0.1.1 → hud_python-0.1.2a0}/agent/response_agent.py +0 -0
  16. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/api-reference/adapters.mdx +0 -0
  17. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/api-reference/client.mdx +0 -0
  18. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/api-reference/env.mdx +0 -0
  19. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/concepts/adapter.mdx +0 -0
  20. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/concepts/client.mdx +0 -0
  21. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/concepts/environment.mdx +0 -0
  22. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/concepts/gym.mdx +0 -0
  23. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/examples/custom-agent.mdx +0 -0
  24. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/installation.mdx +0 -0
  25. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/introduction.mdx +0 -0
  26. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/logo/HUD.svg +0 -0
  27. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/mint.json +0 -0
  28. {hud_python-0.1.1 → hud_python-0.1.2a0}/docs/quickstart.mdx +0 -0
  29. {hud_python-0.1.1 → hud_python-0.1.2a0}/examples/README.md +0 -0
  30. {hud_python-0.1.1 → hud_python-0.1.2a0}/examples/claude_osworld.ipynb +0 -0
  31. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/adapters/__init__.py +0 -0
  32. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/adapters/claude/__init__.py +0 -0
  33. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/adapters/claude/adapter.py +0 -0
  34. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/adapters/common/__init__.py +0 -0
  35. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/adapters/common/adapter.py +0 -0
  36. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/client.py +0 -0
  37. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/environment.py +0 -0
  38. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/gym.py +0 -0
  39. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/py.typed +0 -0
  40. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/run.py +0 -0
  41. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/server/__init__.py +0 -0
  42. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/server/requests.py +0 -0
  43. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/settings.py +0 -0
  44. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/utils/__init__.py +0 -0
  45. {hud_python-0.1.1 → hud_python-0.1.2a0}/hud/utils/config.py +0 -0
  46. {hud_python-0.1.1 → hud_python-0.1.2a0}/tests/__init__.py +0 -0
@@ -22,6 +22,6 @@ uv.lock
22
22
  .DS_Store
23
23
 
24
24
  # Test files
25
- test.ipynb
25
+ /*.ipynb
26
26
  test.json
27
- TODO.md
27
+ TODO.md
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hud-python
3
- Version: 0.1.1
3
+ Version: 0.1.2a0
4
4
  Summary: SDK for the HUD evaluation platform.
5
5
  Project-URL: Homepage, https://github.com/Human-Data/hud-sdk
6
6
  Project-URL: Bug Tracker, https://github.com/Human-Data/hud-sdk/issues
@@ -9,7 +9,7 @@ from hud.environment import Environment, EvalSet, Observation, TaskResult
9
9
  from hud.gym import Gym
10
10
  from hud.run import Run
11
11
 
12
- __version__ = "0.1.1"
12
+ __version__ = "0.1.2-alpha"
13
13
 
14
14
  __all__ = [
15
15
  "Environment",
@@ -78,6 +78,10 @@ class PositionFetch(CLAAction):
78
78
  type: Literal["position"] = "position"
79
79
 
80
80
 
81
+ class CustomAction(CLAAction):
82
+ type: Literal["custom"] = "custom"
83
+ action: str
84
+
81
85
  # Union of all possible actions
82
86
  CLA = Annotated[
83
87
  Union[
@@ -90,6 +94,7 @@ CLA = Annotated[
90
94
  DragAction,
91
95
  ScreenshotFetch,
92
96
  PositionFetch,
97
+ CustomAction,
93
98
  ],
94
99
  Field(discriminator="type"),
95
100
  ]
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "hud-python"
3
- version = "0.1.1"
3
+ version = "0.1.2-alpha"
4
4
  description = "SDK for the HUD evaluation platform."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.9, <3.14"
@@ -4,4 +4,4 @@ from __future__ import annotations
4
4
  def test_import():
5
5
  """Test that the package can be imported."""
6
6
  import hud
7
- assert hud.__version__ == "0.1.1"
7
+ assert hud.__version__ == "0.1.2-alpha"
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