Skip to content

Commit 5034d6c

Browse files
committed
version and small changes
1 parent 322d7cf commit 5034d6c

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ icon: "book"
55
---
66

77
<Note>
8-
**Version 0.4.37** - Latest stable release
8+
**Version 0.4.38** - Latest stable release
99
</Note>
1010

1111
<CardGroup cols={3}>

environments/blank/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "test_test"
33
version = "0.1.0"
44
description = "A minimal HUD environment"
55
requires-python = ">=3.11"
6-
dependencies = [ "hud-python==0.4.37", "fastapi", "uvicorn[standard]", "httpx>=0.28.1",]
6+
dependencies = [ "hud-python==0.4.38", "fastapi", "uvicorn[standard]", "httpx>=0.28.1",]
77

88
[build-system]
99
requires = [ "hatchling",]

environments/deepresearch/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "deepresearch"
33
version = "0.1.0"
44
description = "DeepResearch HUD environment with HTTP backend (EXA on server)"
55
requires-python = ">=3.11"
6-
dependencies = [ "hud-python==0.4.37", "fastapi>=0.104.1", "uvicorn[standard]>=0.24.0", "httpx>=0.24.0",]
6+
dependencies = [ "hud-python==0.4.38", "fastapi>=0.104.1", "uvicorn[standard]>=0.24.0", "httpx>=0.24.0",]
77

88
[build-system]
99
requires = [ "hatchling",]

hud/cli/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
PRESET_MAP: dict[str, str | None] = {
2323
"blank": "blank",
24-
"deep-research": "remote_browser",
24+
"deep-research": "deepresearch",
2525
"browser": "browser",
2626
}
2727

hud/cli/rl/remote_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def ensure_vllm_deployed(model_name: str, gpu_type: str = "A100", timeout: int =
5252
hud_console.info("Waiting for vLLM server to be ready...")
5353
start_time = time.time()
5454
with hud_console.progress() as progress:
55-
progress.update("Checking deployment status (see live status on https://app.hud.so/models)")
55+
progress.update("Checking deployment status (see live status on https://hud.so/models)")
5656
while True:
5757
if time.time() - start_time > timeout:
5858
hud_console.error("Timeout waiting for vLLM deployment")

hud/utils/tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ def test_import():
55
"""Test that the package can be imported."""
66
import hud
77

8-
assert hud.__version__ == "0.4.37"
8+
assert hud.__version__ == "0.4.38"

hud/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
from __future__ import annotations
66

7-
__version__ = "0.4.37"
7+
__version__ = "0.4.38"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hud-python"
3-
version = "0.4.37"
3+
version = "0.4.38"
44
description = "SDK for the HUD platform."
55
readme = "README.md"
66
requires-python = ">=3.11, <3.13"

0 commit comments

Comments
 (0)