hud-python 0.1.4__tar.gz → 0.1.5__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.1.4 → hud_python-0.1.5}/PKG-INFO +1 -1
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/introduction.mdx +1 -1
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/__init__.py +1 -1
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/environment.py +2 -1
- {hud_python-0.1.4 → hud_python-0.1.5}/pyproject.toml +1 -1
- {hud_python-0.1.4 → hud_python-0.1.5}/tests/test_import.py +1 -1
- {hud_python-0.1.4 → hud_python-0.1.5}/.env.example +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/.github/workflows/ci.yml +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/.github/workflows/release.yml +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/.gitignore +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/LICENSE +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/MANIFEST.in +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/README.md +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/agent/base.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/agent/claude.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/agent/response_agent.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/api-reference/adapters.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/api-reference/client.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/api-reference/env.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/concepts/adapter.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/concepts/client.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/concepts/environment.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/concepts/gym.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/examples/custom-agent.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/installation.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/logo/HUD.svg +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/mint.json +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/docs/quickstart.mdx +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/examples/README.md +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/examples/claude_osworld.ipynb +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/adapters/__init__.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/adapters/claude/__init__.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/adapters/claude/adapter.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/adapters/common/__init__.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/adapters/common/adapter.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/adapters/common/types.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/client.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/gym.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/py.typed +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/run.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/server/__init__.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/server/requests.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/settings.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/utils/__init__.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/hud/utils/config.py +0 -0
- {hud_python-0.1.4 → hud_python-0.1.5}/tests/__init__.py +0 -0
|
@@ -3,7 +3,7 @@ title: "HUD SDK | Docs"
|
|
|
3
3
|
description: "A Python SDK for interacting with HUD environments and evaluation benchmarks for browser use and computer use models."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
> **Alpha Release Notice**: This SDK is currently in beta status (v0.1.
|
|
6
|
+
> **Alpha Release Notice**: This SDK is currently in beta status (v0.1.5). The API is still evolving and may change in future releases as we gather feedback and improve functionality.
|
|
7
7
|
|
|
8
8
|
[Visit our homepage hud.so →](https://hud.so)
|
|
9
9
|
|
|
@@ -210,7 +210,7 @@ class Environment:
|
|
|
210
210
|
return self.adapter.adapt_list(action)
|
|
211
211
|
return [self.adapter.adapt(action)]
|
|
212
212
|
|
|
213
|
-
async def evaluate(self) -> RewardResponse:
|
|
213
|
+
async def evaluate(self, final_response: str | None = None) -> RewardResponse:
|
|
214
214
|
"""
|
|
215
215
|
Get final evaluation score.
|
|
216
216
|
|
|
@@ -220,6 +220,7 @@ class Environment:
|
|
|
220
220
|
data = await make_request(
|
|
221
221
|
method="POST",
|
|
222
222
|
url=f"{settings.base_url}/evaluation/{self.id}",
|
|
223
|
+
json={"final_response": final_response},
|
|
223
224
|
api_key=settings.api_key,
|
|
224
225
|
)
|
|
225
226
|
return RewardResponse(**data)
|
|
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
|
|
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
|