hud-python 0.1.0b1__py3-none-any.whl → 0.1.0b2__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.
- hud/__init__.py +1 -1
- hud/run.py +3 -2
- {hud_python-0.1.0b1.dist-info → hud_python-0.1.0b2.dist-info}/METADATA +1 -1
- {hud_python-0.1.0b1.dist-info → hud_python-0.1.0b2.dist-info}/RECORD +6 -6
- {hud_python-0.1.0b1.dist-info → hud_python-0.1.0b2.dist-info}/WHEEL +0 -0
- {hud_python-0.1.0b1.dist-info → hud_python-0.1.0b2.dist-info}/licenses/LICENSE +0 -0
hud/__init__.py
CHANGED
hud/run.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
+
import datetime
|
|
3
4
|
from typing import TYPE_CHECKING, Any
|
|
4
5
|
|
|
5
6
|
from pydantic import BaseModel, Field
|
|
@@ -10,7 +11,7 @@ from .server import make_request
|
|
|
10
11
|
from .settings import settings
|
|
11
12
|
|
|
12
13
|
if TYPE_CHECKING:
|
|
13
|
-
|
|
14
|
+
import datetime
|
|
14
15
|
|
|
15
16
|
from .gym import Gym
|
|
16
17
|
|
|
@@ -61,7 +62,7 @@ class RunAnalyticsResponse(BaseModel):
|
|
|
61
62
|
total_tasks: int
|
|
62
63
|
completed_tasks: int
|
|
63
64
|
running_time: float | None = None # runtime in seconds if available
|
|
64
|
-
created_at: datetime
|
|
65
|
+
created_at: datetime.datetime
|
|
65
66
|
raw_data: dict[str, list[dict[str, Any]]] = Field(
|
|
66
67
|
default_factory=lambda: {"tasks": [], "environments": []}
|
|
67
68
|
)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
hud/__init__.py,sha256=
|
|
1
|
+
hud/__init__.py,sha256=GmX-LujM2oZR6_tP_mOW09BY8HeK41lLF-P0sMW_1pY,416
|
|
2
2
|
hud/client.py,sha256=ztWPiAJyJUdJxdxGqDmsQnVK-_jccinWQUUXmq0OOmY,5843
|
|
3
3
|
hud/environment.py,sha256=R-t-21V0gveuHL6LlVLnBp0gYGm8tn5FbLcq_rRlH9g,8587
|
|
4
4
|
hud/gym.py,sha256=dKmf0Ol0-XyLhji034pF_5dXnhW1IgIr-dJUg4KfslE,475
|
|
5
|
-
hud/run.py,sha256=
|
|
5
|
+
hud/run.py,sha256=_K7POPjJyqcJ_DVLAO7hRmvLUcg9gg2KrLHw_26DB9I,6570
|
|
6
6
|
hud/settings.py,sha256=FbZHI1q6bDHe7Awl32SDPb-syqtkLI3C7gIIXuMXCiQ,1045
|
|
7
7
|
hud/adapters/__init__.py,sha256=y3H7yMl7rC-rrXG2WvePdSojoNFSui02eYTH17Xd7OY,87
|
|
8
8
|
hud/adapters/claude/__init__.py,sha256=GsMxaBL5ZuKV6-jJsLfw23n_Ml9e88SXIddYDGkIUKE,101
|
|
@@ -15,7 +15,7 @@ hud/server/requests.py,sha256=M_pK1oCd4QjIE0yguD6iaybJ_mempOWDQYEpdOkophU,5522
|
|
|
15
15
|
hud/utils/__init__.py,sha256=0m8klSLnMLeIJT23ipBXfFACk4hNWPsA6ZNqZDpv6oY,99
|
|
16
16
|
hud/utils/config.py,sha256=dze0BGE4q14omjj9822kL9BeiIgWQvJyuU29A2wa1SE,193
|
|
17
17
|
hud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
hud_python-0.1.
|
|
19
|
-
hud_python-0.1.
|
|
20
|
-
hud_python-0.1.
|
|
21
|
-
hud_python-0.1.
|
|
18
|
+
hud_python-0.1.0b2.dist-info/METADATA,sha256=5skHs5IfSJP4DQAGzpuo_yjO7l65XxHIPWGitHQt0Ug,5140
|
|
19
|
+
hud_python-0.1.0b2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
20
|
+
hud_python-0.1.0b2.dist-info/licenses/LICENSE,sha256=IVdfcZ8xq5apYGJS5GzRLLbm9r03Aecxd03isi-3P9k,1075
|
|
21
|
+
hud_python-0.1.0b2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|