inspect-ai 0.3.51__py3-none-any.whl → 0.3.53__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.
- inspect_ai/_cli/eval.py +44 -2
- inspect_ai/_display/core/config.py +4 -0
- inspect_ai/_display/core/panel.py +1 -1
- inspect_ai/_display/core/progress.py +9 -3
- inspect_ai/_display/core/results.py +8 -4
- inspect_ai/_display/textual/widgets/task_detail.py +45 -13
- inspect_ai/_display/textual/widgets/tasks.py +86 -5
- inspect_ai/_display/textual/widgets/transcript.py +4 -17
- inspect_ai/_eval/eval.py +29 -1
- inspect_ai/_eval/evalset.py +7 -0
- inspect_ai/_eval/registry.py +2 -2
- inspect_ai/_eval/task/log.py +6 -1
- inspect_ai/_eval/task/results.py +22 -4
- inspect_ai/_eval/task/run.py +18 -12
- inspect_ai/_eval/task/sandbox.py +72 -43
- inspect_ai/_eval/task/task.py +4 -0
- inspect_ai/_eval/task/util.py +17 -6
- inspect_ai/_util/logger.py +10 -2
- inspect_ai/_util/samples.py +7 -0
- inspect_ai/_util/transcript.py +8 -0
- inspect_ai/_view/www/App.css +13 -0
- inspect_ai/_view/www/dist/assets/index.css +13 -0
- inspect_ai/_view/www/dist/assets/index.js +105 -55
- inspect_ai/_view/www/src/App.mjs +31 -6
- inspect_ai/_view/www/src/Types.mjs +6 -0
- inspect_ai/_view/www/src/components/JsonPanel.mjs +11 -17
- inspect_ai/_view/www/src/components/MessageContent.mjs +9 -2
- inspect_ai/_view/www/src/components/Tools.mjs +46 -18
- inspect_ai/_view/www/src/navbar/Navbar.mjs +12 -0
- inspect_ai/_view/www/src/samples/SampleDisplay.mjs +18 -5
- inspect_ai/_view/www/src/samples/SampleList.mjs +2 -2
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.mjs +2 -2
- inspect_ai/log/_log.py +6 -0
- inspect_ai/log/_recorders/eval.py +8 -7
- inspect_ai/model/_call_tools.py +2 -6
- inspect_ai/model/_generate_config.py +6 -0
- inspect_ai/model/_model.py +18 -4
- inspect_ai/model/_providers/azureai.py +22 -2
- inspect_ai/model/_providers/bedrock.py +17 -1
- inspect_ai/model/_providers/hf.py +1 -1
- inspect_ai/model/_providers/openai.py +32 -8
- inspect_ai/model/_providers/providers.py +1 -1
- inspect_ai/model/_providers/vllm.py +1 -1
- inspect_ai/model/_render.py +7 -6
- inspect_ai/model/_trace.py +1 -1
- inspect_ai/solver/_basic_agent.py +8 -1
- inspect_ai/tool/_tool_transcript.py +28 -0
- inspect_ai/util/_sandbox/context.py +1 -2
- inspect_ai/util/_sandbox/docker/config.py +8 -10
- inspect_ai/util/_sandbox/docker/docker.py +9 -5
- inspect_ai/util/_sandbox/docker/util.py +3 -3
- inspect_ai/util/_sandbox/environment.py +7 -2
- inspect_ai/util/_sandbox/limits.py +1 -1
- inspect_ai/util/_sandbox/local.py +8 -9
- {inspect_ai-0.3.51.dist-info → inspect_ai-0.3.53.dist-info}/METADATA +2 -4
- {inspect_ai-0.3.51.dist-info → inspect_ai-0.3.53.dist-info}/RECORD +60 -59
- {inspect_ai-0.3.51.dist-info → inspect_ai-0.3.53.dist-info}/LICENSE +0 -0
- {inspect_ai-0.3.51.dist-info → inspect_ai-0.3.53.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.51.dist-info → inspect_ai-0.3.53.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.51.dist-info → inspect_ai-0.3.53.dist-info}/top_level.txt +0 -0
@@ -5,7 +5,6 @@ from logging import getLogger
|
|
5
5
|
from pathlib import Path, PurePosixPath
|
6
6
|
from typing import Literal, Union, cast, overload
|
7
7
|
|
8
|
-
import aiofiles
|
9
8
|
from typing_extensions import override
|
10
9
|
|
11
10
|
from inspect_ai.util._subprocess import ExecResult
|
@@ -54,6 +53,11 @@ class DockerSandboxEnvironment(SandboxEnvironment):
|
|
54
53
|
def config_files(cls) -> list[str]:
|
55
54
|
return CONFIG_FILES + [DOCKERFILE]
|
56
55
|
|
56
|
+
@classmethod
|
57
|
+
def default_concurrency(cls) -> int | None:
|
58
|
+
count = os.cpu_count() or 1
|
59
|
+
return 2 * count
|
60
|
+
|
57
61
|
@classmethod
|
58
62
|
async def task_init(
|
59
63
|
cls, task_name: str, config: SandboxEnvironmentConfigType | None
|
@@ -403,11 +407,11 @@ class DockerSandboxEnvironment(SandboxEnvironment):
|
|
403
407
|
|
404
408
|
# read and return w/ appropriate encoding
|
405
409
|
if text:
|
406
|
-
|
407
|
-
return
|
410
|
+
with open(dest_file, "r", encoding="utf-8") as f:
|
411
|
+
return f.read()
|
408
412
|
else:
|
409
|
-
|
410
|
-
return
|
413
|
+
with open(dest_file, "rb") as f:
|
414
|
+
return f.read()
|
411
415
|
|
412
416
|
@override
|
413
417
|
async def connection(self) -> SandboxConnection:
|
@@ -41,7 +41,7 @@ class ComposeProject:
|
|
41
41
|
|
42
42
|
# if its a Dockerfile, then config is the auto-generated .compose.yaml
|
43
43
|
if config_path and is_dockerfile(config_path.name):
|
44
|
-
config =
|
44
|
+
config = auto_compose_file(
|
45
45
|
COMPOSE_DOCKERFILE_YAML, config_path.parent.as_posix()
|
46
46
|
)
|
47
47
|
|
@@ -51,12 +51,12 @@ class ComposeProject:
|
|
51
51
|
|
52
52
|
# no config passed, look for 'auto-config' (compose.yaml, Dockerfile, etc.)
|
53
53
|
else:
|
54
|
-
config =
|
54
|
+
config = resolve_compose_file()
|
55
55
|
|
56
56
|
# this could be a cleanup where docker has tracked a .compose.yaml file
|
57
57
|
# as part of its ConfigFiles and passed it back to us -- we in the
|
58
58
|
# meantime have cleaned it up so we re-create it here as required
|
59
|
-
|
59
|
+
ensure_auto_compose_file(config)
|
60
60
|
|
61
61
|
# return project
|
62
62
|
return ComposeProject(name, config, env)
|
@@ -53,6 +53,11 @@ class SandboxEnvironment(abc.ABC):
|
|
53
53
|
"""Standard config files for this provider (used for automatic discovery)"""
|
54
54
|
return []
|
55
55
|
|
56
|
+
@classmethod
|
57
|
+
def default_concurrency(cls) -> int | None:
|
58
|
+
"""Default max_sandboxes for this provider (`None` means no maximum)"""
|
59
|
+
return None
|
60
|
+
|
56
61
|
@classmethod
|
57
62
|
async def task_init(
|
58
63
|
cls, task_name: str, config: SandboxEnvironmentConfigType | None
|
@@ -143,7 +148,7 @@ class SandboxEnvironment(abc.ABC):
|
|
143
148
|
The current working directory for execution will be the per-sample
|
144
149
|
filesystem context.
|
145
150
|
|
146
|
-
Each output stream (stdout and stderr) is limited to
|
151
|
+
Each output stream (stdout and stderr) is limited to 10 MiB. If exceeded, an
|
147
152
|
`OutputLimitExceededError` will be raised.
|
148
153
|
|
149
154
|
Args:
|
@@ -164,7 +169,7 @@ class SandboxEnvironment(abc.ABC):
|
|
164
169
|
PermissionError: If the user does not have
|
165
170
|
permission to execute the command.
|
166
171
|
OutputLimitExceededError: If an output stream
|
167
|
-
exceeds the
|
172
|
+
exceeds the 10 MiB limit.
|
168
173
|
"""
|
169
174
|
...
|
170
175
|
|
@@ -29,7 +29,7 @@ def verify_exec_result_size(exec_result: ExecResult[str]) -> None:
|
|
29
29
|
"""Verify the size of the output streams in an `ExecResult`.
|
30
30
|
|
31
31
|
Raises:
|
32
|
-
OutputLimitExceededError: If an output stream exceeds the
|
32
|
+
OutputLimitExceededError: If an output stream exceeds the limit.
|
33
33
|
"""
|
34
34
|
limit = SandboxEnvironmentLimits.MAX_EXEC_OUTPUT_SIZE
|
35
35
|
stdout_truncated = truncate_string_to_bytes(exec_result.stdout, limit)
|
@@ -3,7 +3,6 @@ import warnings
|
|
3
3
|
from pathlib import Path
|
4
4
|
from typing import Literal, Union, cast, overload
|
5
5
|
|
6
|
-
import aiofiles
|
7
6
|
from typing_extensions import override
|
8
7
|
|
9
8
|
from .._subprocess import ExecResult, subprocess
|
@@ -85,11 +84,11 @@ class LocalSandboxEnvironment(SandboxEnvironment):
|
|
85
84
|
Path(file).parent.mkdir(parents=True, exist_ok=True)
|
86
85
|
|
87
86
|
if isinstance(contents, str):
|
88
|
-
|
89
|
-
|
87
|
+
with open(file, "w", encoding="utf-8") as f:
|
88
|
+
f.write(contents)
|
90
89
|
else:
|
91
|
-
|
92
|
-
|
90
|
+
with open(file, "wb") as f:
|
91
|
+
f.write(contents)
|
93
92
|
|
94
93
|
@overload
|
95
94
|
async def read_file(self, file: str, text: Literal[True] = True) -> str: ...
|
@@ -102,11 +101,11 @@ class LocalSandboxEnvironment(SandboxEnvironment):
|
|
102
101
|
file = self._resolve_file(file)
|
103
102
|
verify_read_file_size(file)
|
104
103
|
if text:
|
105
|
-
|
106
|
-
return
|
104
|
+
with open(file, "r", encoding="utf-8") as f:
|
105
|
+
return f.read()
|
107
106
|
else:
|
108
|
-
|
109
|
-
return
|
107
|
+
with open(file, "rb") as f:
|
108
|
+
return f.read()
|
110
109
|
|
111
110
|
def _resolve_file(self, file: str) -> str:
|
112
111
|
path = Path(file)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: inspect_ai
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.53
|
4
4
|
Summary: Framework for large language model evaluations
|
5
5
|
Author: UK AI Safety Institute
|
6
6
|
License: MIT License
|
@@ -20,7 +20,6 @@ Classifier: Operating System :: OS Independent
|
|
20
20
|
Requires-Python: >=3.10
|
21
21
|
Description-Content-Type: text/markdown
|
22
22
|
License-File: LICENSE
|
23
|
-
Requires-Dist: aiofiles
|
24
23
|
Requires-Dist: aiohttp>=3.9.0
|
25
24
|
Requires-Dist: anyio>=4.4.0
|
26
25
|
Requires-Dist: beautifulsoup4
|
@@ -68,10 +67,9 @@ Requires-Dist: pytest-asyncio; extra == "dev"
|
|
68
67
|
Requires-Dist: pytest-cov; extra == "dev"
|
69
68
|
Requires-Dist: pytest-dotenv; extra == "dev"
|
70
69
|
Requires-Dist: pytest-xdist; extra == "dev"
|
71
|
-
Requires-Dist: ruff==0.8.
|
70
|
+
Requires-Dist: ruff==0.8.3; extra == "dev"
|
72
71
|
Requires-Dist: textual-dev>=0.86.2; extra == "dev"
|
73
72
|
Requires-Dist: types-PyYAML; extra == "dev"
|
74
|
-
Requires-Dist: types-aiofiles; extra == "dev"
|
75
73
|
Requires-Dist: types-beautifulsoup4; extra == "dev"
|
76
74
|
Requires-Dist: types-aioboto3; extra == "dev"
|
77
75
|
Requires-Dist: types-boto3; extra == "dev"
|
@@ -3,7 +3,7 @@ inspect_ai/__main__.py,sha256=oWX4YwDZDg3GS3-IG0yPGoSEOfSzWihELg7QmrUlxjM,67
|
|
3
3
|
inspect_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
inspect_ai/_cli/cache.py,sha256=nOX9ysB3rZ-V8b_ryTpkgpoAynNlq4Op_fIqAIl4EVg,3910
|
5
5
|
inspect_ai/_cli/common.py,sha256=f6OGE63OoN5Y4tk0i8pllfSdmhGlf8teZY8NCvWexGY,3573
|
6
|
-
inspect_ai/_cli/eval.py,sha256=
|
6
|
+
inspect_ai/_cli/eval.py,sha256=IgOirZ6tB5RK8LE5Z8Js4wt7jrse1ssGT32_Xw4DJ4U,30892
|
7
7
|
inspect_ai/_cli/info.py,sha256=d5W7VA5buinGcsdQjWqlsMM6iSNNGRUHQrr4JS2k8nk,1749
|
8
8
|
inspect_ai/_cli/list.py,sha256=GreVEhJRpagiCpzVc3FSGhcdpTq9B8Jh--mfgs4ueFQ,2454
|
9
9
|
inspect_ai/_cli/log.py,sha256=boSzHZkiabhnYWHLRVsZVENCryG-MDaNHIIbpSp0Mcs,5729
|
@@ -14,13 +14,13 @@ inspect_ai/_cli/util.py,sha256=rOyKR5p08-04IwJdcjakNXD1Gm-dGFtzaTTx7hyArPE,1402
|
|
14
14
|
inspect_ai/_cli/view.py,sha256=9UstZ5a1upMZlVKfQCK8L_HvTR1WgLpBp3zpSgTyrLo,2786
|
15
15
|
inspect_ai/_display/__init__.py,sha256=t9Xj8FbxvdBNsalnr16U0r3jSTFX9w4yXcUJwb06_6k,405
|
16
16
|
inspect_ai/_display/core/active.py,sha256=ZXH9KzuXr9ViAGcAZRWtegbO_YqApvgBjr_7TGAxDFQ,1219
|
17
|
-
inspect_ai/_display/core/config.py,sha256=
|
17
|
+
inspect_ai/_display/core/config.py,sha256=zvF8jW3NhDGhVSCAqjXsblNjvKGUtMUdn2YMor3cFC4,1664
|
18
18
|
inspect_ai/_display/core/display.py,sha256=3Tu6XO5v1oMhG9ZgmMUz11PncwmO_bK5W2q67IhQkl0,3064
|
19
19
|
inspect_ai/_display/core/footer.py,sha256=2e5kimg8drlJgdhHYuHUiP-B8U6LtYLyORWB4a1kXx8,805
|
20
20
|
inspect_ai/_display/core/group.py,sha256=z8CIwQ-8Mm9adQ8JDuMjw94ih9GfymU5s-1qnbKoEPs,2871
|
21
|
-
inspect_ai/_display/core/panel.py,sha256=
|
22
|
-
inspect_ai/_display/core/progress.py,sha256=
|
23
|
-
inspect_ai/_display/core/results.py,sha256=
|
21
|
+
inspect_ai/_display/core/panel.py,sha256=G2sb1uayFmFb0qiU37OziRXaxZF2t3APXadPbQcsZqY,3754
|
22
|
+
inspect_ai/_display/core/progress.py,sha256=X6hFpO3nUZJVpo16zc1ISTD5zE47SJn5mNoxNgjyRkg,4381
|
23
|
+
inspect_ai/_display/core/results.py,sha256=aFLmG1Ij0fxYk2848QgQlesfMeRdHVEg_W9esmeL_S0,7355
|
24
24
|
inspect_ai/_display/core/rich.py,sha256=ve4y1O_P9E1py6s4jGq1lHa7t6IlF5Brgue2-xikJOg,2729
|
25
25
|
inspect_ai/_display/core/textual.py,sha256=kzMTt8ijrodwhDB5V50pP2IBhnUCusVbP86TytU_rA8,870
|
26
26
|
inspect_ai/_display/rich/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -33,17 +33,17 @@ inspect_ai/_display/textual/widgets/clock.py,sha256=8NijI2cqgTY1DJF8-nvK_QUJXxcn
|
|
33
33
|
inspect_ai/_display/textual/widgets/console.py,sha256=lp5lbT9erPjxE1NWzvuJ5Bj8mN2ZZSBTgKQWHinMKgA,1590
|
34
34
|
inspect_ai/_display/textual/widgets/footer.py,sha256=_4Dlzp9kriUVELBEk6HQzgiwLigHe5mH0dZqWr6sGi4,1078
|
35
35
|
inspect_ai/_display/textual/widgets/samples.py,sha256=KPL2UMnKQe2zpFdVnTGOaIgebKLEdSXeZ59j2Yn1js0,14767
|
36
|
-
inspect_ai/_display/textual/widgets/task_detail.py,sha256=
|
37
|
-
inspect_ai/_display/textual/widgets/tasks.py,sha256=
|
36
|
+
inspect_ai/_display/textual/widgets/task_detail.py,sha256=UCxQZkKrG6ILacuPpiJaoElezqJNb0njPWPA4IuNVDo,8289
|
37
|
+
inspect_ai/_display/textual/widgets/tasks.py,sha256=KWxRn-oQPmYvM5wQLdE8bsEjvrF-ta9KZlDuSb24Prs,10799
|
38
38
|
inspect_ai/_display/textual/widgets/titlebar.py,sha256=Gh_vnsco_1lStPb34TXM9MZJffjy83-1ekoRzUQF_6w,2144
|
39
39
|
inspect_ai/_display/textual/widgets/toggle.py,sha256=ToYs-S4n90yuxWcAW2OTg6AbRf0GhSz61XxfhE6XZ3Y,895
|
40
|
-
inspect_ai/_display/textual/widgets/transcript.py,sha256=
|
40
|
+
inspect_ai/_display/textual/widgets/transcript.py,sha256=rRTM9aSNHau89mSmlH6Ni9qIckYS9_Han0RtuO6QZmk,10999
|
41
41
|
inspect_ai/_eval/context.py,sha256=YdbaFJfzYEa-iF1fP8BEpB3l6ZnlOJZ8ntPfIrhdacQ,1080
|
42
|
-
inspect_ai/_eval/eval.py,sha256=
|
43
|
-
inspect_ai/_eval/evalset.py,sha256=
|
42
|
+
inspect_ai/_eval/eval.py,sha256=JiGJUZmVoKA75o3YajrDO1rTQBUvuaNHq5VwoEzGaTI,35894
|
43
|
+
inspect_ai/_eval/evalset.py,sha256=GAHZ02iNt-WWrxK6tVfZ3LtaoplP6cH4Y5f_QxeWprY,27028
|
44
44
|
inspect_ai/_eval/list.py,sha256=VbZ-2EI6MqrXvCN7VTz21TQSoU5K5_Q0hqhxmj5A_m0,3744
|
45
45
|
inspect_ai/_eval/loader.py,sha256=d_7PcajwAF8sG-sMeYOpkrSt5TcUz_tewgWocIIIlKQ,16267
|
46
|
-
inspect_ai/_eval/registry.py,sha256=
|
46
|
+
inspect_ai/_eval/registry.py,sha256=uEX5vd1l1Ni_OM71WhuesobjWUlKUxXfcjRTJotWaW4,5446
|
47
47
|
inspect_ai/_eval/run.py,sha256=CsIi8xOHJRkV2rHlBOqToHrgVBnueDVPlgwJrsZpJtI,15299
|
48
48
|
inspect_ai/_eval/score.py,sha256=UlHbpHUrx4LmiI8HmWOwzoX8bKcZI0ju9sz5Vp-GkZg,6526
|
49
49
|
inspect_ai/_eval/task/__init__.py,sha256=bu0log0rQnwNXL1JcWp7IrIAHyWbe9TZgspowEs4iwc,168
|
@@ -52,13 +52,13 @@ inspect_ai/_eval/task/epochs.py,sha256=Ci7T6CQniSOTChv5Im2dCdSDrP-5hq19rV6iJ2uBc
|
|
52
52
|
inspect_ai/_eval/task/error.py,sha256=gJnd8X7LHpPz5zcOq_az6ONZICGJ0_VpSz9yhF0yRyY,1233
|
53
53
|
inspect_ai/_eval/task/generate.py,sha256=Edm-_6Wp1mkb7XpGkfTAqobWPfjJeWB0sb8-76UjNrc,1999
|
54
54
|
inspect_ai/_eval/task/images.py,sha256=gnhOK97qFBnZYFisv1lgD4hLTaK83cHcJ5D9zA-NoLE,3524
|
55
|
-
inspect_ai/_eval/task/log.py,sha256=
|
56
|
-
inspect_ai/_eval/task/results.py,sha256=
|
57
|
-
inspect_ai/_eval/task/run.py,sha256=
|
55
|
+
inspect_ai/_eval/task/log.py,sha256=wxA7rc-YGY7eri_IgJXIBPo4i6hy6j7-8FJlEO0TxRg,6068
|
56
|
+
inspect_ai/_eval/task/results.py,sha256=vJADjZaK38fRZ1kLRBby46tVk2qzah40VH34QnmCJXM,14482
|
57
|
+
inspect_ai/_eval/task/run.py,sha256=26vcnjEQCIEAsA4OlCp8KAwhk55Ch4JxQZo1s76CffA,31320
|
58
58
|
inspect_ai/_eval/task/rundir.py,sha256=QXetLfqi1lRo-PcIuu7maQpVO57c2ebnsjfZk0lsAFk,2001
|
59
|
-
inspect_ai/_eval/task/sandbox.py,sha256=
|
60
|
-
inspect_ai/_eval/task/task.py,sha256=
|
61
|
-
inspect_ai/_eval/task/util.py,sha256=
|
59
|
+
inspect_ai/_eval/task/sandbox.py,sha256=42cSmeGQGTiK1JoMcqWAKtthZKP4ikPvNa3qI3fhk6E,5924
|
60
|
+
inspect_ai/_eval/task/task.py,sha256=slsIyqp1oVjhC9SkTdP-s6gRt_wTn3EvAaShgDNhK9A,8014
|
61
|
+
inspect_ai/_eval/task/util.py,sha256=NG7YzVaiSgiH8xYGT2LeeVfaz4GIhXgXZYnU2SeDCO8,1837
|
62
62
|
inspect_ai/_util/_async.py,sha256=K5lVPKwl25JkLkcXfb0m3aZ-RJ4O3fog5HQm5EqbjM4,981
|
63
63
|
inspect_ai/_util/appdirs.py,sha256=lhURbDS9xT2YBzWOe0jjxsdK4ZdiVAv_WwXQC83V_jw,563
|
64
64
|
inspect_ai/_util/config.py,sha256=nuWVZbShE8IPnotDfRJx0uBZJxwbV36M0qKVYsQDEEI,848
|
@@ -84,7 +84,7 @@ inspect_ai/_util/http.py,sha256=c4yvH48ZkETZ7sNDuNzBR0NUS4r-6WzCaolW9my13ns,3628
|
|
84
84
|
inspect_ai/_util/images.py,sha256=pCaL_GwWGQsnawu4WmbubY7eHZzgqXvHrmK5-GJikn8,1245
|
85
85
|
inspect_ai/_util/json.py,sha256=1mgVURVVPo34hQcGmX6u25hlbRdRY4hmNHXZGVwYaKc,3342
|
86
86
|
inspect_ai/_util/list.py,sha256=6_5r5jI5RKK34kCmIqqVQ5hYG-G8v0F5H7L-DmQQ2E4,279
|
87
|
-
inspect_ai/_util/logger.py,sha256=
|
87
|
+
inspect_ai/_util/logger.py,sha256=erX7YLYwrtZ1Z1SI2sun70f40zn7EU38DlUKB5Sgt9E,6155
|
88
88
|
inspect_ai/_util/notebook.py,sha256=Mgz3J4uBh-MqVBRmpiJqDHRpn2hd7HIOBeJBwLG-bbk,2998
|
89
89
|
inspect_ai/_util/package.py,sha256=2ntItRYaYBaVWI5eDaB4FdpI1IUBiBWNRxq7FChvk1I,2729
|
90
90
|
inspect_ai/_util/path.py,sha256=fLfKXOXuQstwVfl2i1Gzxix8TZLxLqtZIHqyqK3MnvY,3795
|
@@ -93,12 +93,12 @@ inspect_ai/_util/platform.py,sha256=knsijYYaif5rgkGuYRwr_p7DlsD1VD-yfbt08dKOrGM,
|
|
93
93
|
inspect_ai/_util/registry.py,sha256=yoajCn16miznXpFiFNOT-1TTrS5ZuZbly5mt7T4UJbM,11689
|
94
94
|
inspect_ai/_util/retry.py,sha256=fAupOVgGJ0ImnmtXmCHBKRa3AQC7jDA-Zf_zilSCRl0,1899
|
95
95
|
inspect_ai/_util/rich.py,sha256=sNWEsGlGmkkZZLo4AcEv-_yJI1bI0HcpZVt7wNJFsXg,692
|
96
|
-
inspect_ai/_util/samples.py,sha256=
|
96
|
+
inspect_ai/_util/samples.py,sha256=uobAN2i1U-6YBxCBvaW6z1-xFufQIuFXHnnnK-oTDKc,507
|
97
97
|
inspect_ai/_util/terminal.py,sha256=I4NDy7Ln5YSCzxbd0O9OPslEHQMBVKZfqJl3TOCegTg,4166
|
98
98
|
inspect_ai/_util/text.py,sha256=1Q5tNqB-61yXXo_bQxzxJCEXCMU7aVs3qpXQir2xKu0,3174
|
99
99
|
inspect_ai/_util/throttle.py,sha256=Yoz-qnGULR88QFrJfeo4TQgfQ9AHsVNVKqdDlxgSipc,663
|
100
100
|
inspect_ai/_util/timeouts.py,sha256=-iC1LjpNqB6Hx-i36MfSrLy819RVhKNo4KXjZDuskZQ,5193
|
101
|
-
inspect_ai/_util/transcript.py,sha256=
|
101
|
+
inspect_ai/_util/transcript.py,sha256=KG6Vz57fTYDinrscd-iT8K2JfYPZ7SJrpedrlLKK9Lo,2744
|
102
102
|
inspect_ai/_util/url.py,sha256=Ci9I1T7hSRuA1CvgQmN9TWTSzUPO4ILMkd_8maZlO6k,622
|
103
103
|
inspect_ai/_util/version.py,sha256=PRh1HSHD_EgRW_VYIPquOPj-gL9DM164ePQ9LL3d9lU,739
|
104
104
|
inspect_ai/_view/notify.py,sha256=6lI42tz4Ui7ThvwsJgBamRcCczSTWGXGWtciP3M8VaA,1394
|
@@ -108,7 +108,7 @@ inspect_ai/_view/view.py,sha256=BEIAhFAHdFJxkCicCfYa5ZdcOtGDlL0ZUAsOSjPHiMQ,2960
|
|
108
108
|
inspect_ai/_view/www/.gitignore,sha256=Qyau1UN5uAQB8cwjhokiMEMgJtQCReq-6ohBVCXV8ZQ,52
|
109
109
|
inspect_ai/_view/www/.prettierignore,sha256=SiJfow55o33Kh0KB2BJGQsjgyHNURdtmI097aY6kJzc,85
|
110
110
|
inspect_ai/_view/www/.tool-versions,sha256=f_sejk8S4O7DHHSB2O2Kb9nt03ih81IgZ2u2ZrwIvEE,14
|
111
|
-
inspect_ai/_view/www/App.css,sha256
|
111
|
+
inspect_ai/_view/www/App.css,sha256=-Zbk5ZKr8eGvDxNIT6htFylKKv3yhkx5LFgK33F00cI,23880
|
112
112
|
inspect_ai/_view/www/README.md,sha256=eq2rHxZtcReCcAYnxLj8Umn8uuiFLA9FLXFqNd83IBE,932
|
113
113
|
inspect_ai/_view/www/eslint.config.mjs,sha256=wUi4ffMbjLKiLDBegWY6814TFu_ojR5GhA8f9vwIqjE,296
|
114
114
|
inspect_ai/_view/www/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9MAs,1508
|
@@ -122,11 +122,11 @@ inspect_ai/_view/www/vite.config.js,sha256=DCsVJpxrjT3TI16acQiXtTiz5JpXB_Tyd0tRX
|
|
122
122
|
inspect_ai/_view/www/yarn.lock,sha256=UsPRVYxWj1teJWLag7l8znvHprucro96dR3xLkmGZwk,69423
|
123
123
|
inspect_ai/_view/www/dist/index.html,sha256=ErXXXs-OUDOAZexWCmn_u-frxXROpg4kBt6Yvjj0a0U,998
|
124
124
|
inspect_ai/_view/www/dist/assets/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9MAs,1508
|
125
|
-
inspect_ai/_view/www/dist/assets/index.css,sha256=
|
126
|
-
inspect_ai/_view/www/dist/assets/index.js,sha256=
|
127
|
-
inspect_ai/_view/www/src/App.mjs,sha256=
|
125
|
+
inspect_ai/_view/www/dist/assets/index.css,sha256=6qB5bec2VBNIPqO5dhOiNnno1km-Fx802u6dO_GFec4,814013
|
126
|
+
inspect_ai/_view/www/dist/assets/index.js,sha256=KXbkCx3LGM4wbD8gCE5yAZ4y3q71jdRsN8novL-84WI,924972
|
127
|
+
inspect_ai/_view/www/src/App.mjs,sha256=LaolOhbIfcc41fBWPLguuFU-0LfGPpD-K0GdMcRkBtI,29457
|
128
128
|
inspect_ai/_view/www/src/Register.mjs,sha256=jpIqov7fyyLPW9Ouhc9KOy__o8s-P5h-VF9S1RDsIDU,116
|
129
|
-
inspect_ai/_view/www/src/Types.mjs,sha256
|
129
|
+
inspect_ai/_view/www/src/Types.mjs,sha256=F1wVhOd9FrcfSikYS5AL6GGGk20B422xeDHCeRJKfwU,790
|
130
130
|
inspect_ai/_view/www/src/constants.mjs,sha256=UIxGbDscs61CcOQLQiW6MsZAU1uupSYNVLGxx2pp14A,1169
|
131
131
|
inspect_ai/_view/www/src/index.js,sha256=vmIh75yVc2omKT6o0T6YrH2F9xPgkE_4cQmbWflLqtI,658
|
132
132
|
inspect_ai/_view/www/src/api/Types.mjs,sha256=LAiNp8U126cNzm5ZE3lAH0vG7P6Q6y5t8QdbemFwBqo,5039
|
@@ -155,12 +155,12 @@ inspect_ai/_view/www/src/components/EmptyPanel.mjs,sha256=gqkSjsLNYNOBrBTYueAq8Y
|
|
155
155
|
inspect_ai/_view/www/src/components/ErrorPanel.mjs,sha256=R5etulJpH4lS7OMB6txNvsEue2UT5k2Us5Z0IfViJr0,1814
|
156
156
|
inspect_ai/_view/www/src/components/ExpandablePanel.mjs,sha256=jx3u6Degy5N0XNSVUKjjrBWYEo6BQckafObUgx-sjQ8,3445
|
157
157
|
inspect_ai/_view/www/src/components/FindBand.mjs,sha256=7wujCN5UtaDLKGJ8hOrQR5brt0Ial1Pk3-JkRwkb8sQ,4501
|
158
|
-
inspect_ai/_view/www/src/components/JsonPanel.mjs,sha256
|
158
|
+
inspect_ai/_view/www/src/components/JsonPanel.mjs,sha256=PHecYvrrQgcgRX5o_BUPRJR5fWGC6IBPNrN4gMYfsw8,1718
|
159
159
|
inspect_ai/_view/www/src/components/LabeledValue.mjs,sha256=5HNKW3xoL7xquzI-hLbRquS4ZEyhM78_HY7btKZhiF4,661
|
160
160
|
inspect_ai/_view/www/src/components/LargeModal.mjs,sha256=1ZoHPlEsBpcFwvZJTSo7wu7s3uwXE9G0ROocYmu28-4,4534
|
161
161
|
inspect_ai/_view/www/src/components/MarkdownDiv.mjs,sha256=WH4W52AUXHAbBtRsNZFuBINDvGmm-yZVcfKUrVGGJdY,2908
|
162
162
|
inspect_ai/_view/www/src/components/MessageBand.mjs,sha256=eL3wUU7H9ptg4ks4ZoPoiuzR-H4O5yNqejBU48Cf6Yc,1369
|
163
|
-
inspect_ai/_view/www/src/components/MessageContent.mjs,sha256=
|
163
|
+
inspect_ai/_view/www/src/components/MessageContent.mjs,sha256=wIMW5ExfqvKv6vDmVWIEPjhMQQvh7dPF3Li1pbp8pjk,2115
|
164
164
|
inspect_ai/_view/www/src/components/MetaDataGrid.mjs,sha256=T_GnEfF1Cfqeqn2JpVgjtJwijwx2b9fF1_8KLCaAPQI,2706
|
165
165
|
inspect_ai/_view/www/src/components/MetaDataView.mjs,sha256=tnhqWfVaSF1vpiryKdd_ONqHO5cH2fZigIEhmMPXarA,3043
|
166
166
|
inspect_ai/_view/www/src/components/MorePopOver.mjs,sha256=53A_hUI7QEHSvn-rAyFmZ_TBrqa6_FD1BwDl_WLNQU0,1359
|
@@ -168,7 +168,7 @@ inspect_ai/_view/www/src/components/NavPills.mjs,sha256=i9vGFCPWf58ZnmthjVh-rGHT
|
|
168
168
|
inspect_ai/_view/www/src/components/ProgressBar.mjs,sha256=qbxzSobJtOia3rq_efgaGj6hg64J7MsuOehzDxJ78n0,1100
|
169
169
|
inspect_ai/_view/www/src/components/TabSet.mjs,sha256=hpGtESsh1TA1FVx1ntterUP_yPtxy_Azo-7scvJZld4,4581
|
170
170
|
inspect_ai/_view/www/src/components/ToolButton.mjs,sha256=-9SS77AAhrLkMMGZXhRt1xLQ14V02VF8Rknb42vqoic,471
|
171
|
-
inspect_ai/_view/www/src/components/Tools.mjs,sha256=
|
171
|
+
inspect_ai/_view/www/src/components/Tools.mjs,sha256=AB9L64TqseUh7SRHiFx6lZykUi6ygwZqph9tSdQpb6U,10376
|
172
172
|
inspect_ai/_view/www/src/components/VirtualList.mjs,sha256=YEffZnQDcKGxcTjv2Vz9tNYkG2TwdZTyUIVi5WcZZsE,2832
|
173
173
|
inspect_ai/_view/www/src/components/ansi-output.js,sha256=CW4xRvehAdUUjbbr5IFLOhqX8y9QmUwcWziFBQmJpFw,33596
|
174
174
|
inspect_ai/_view/www/src/components/RenderedContent/ChatMessageRenderer.mjs,sha256=xGEc_N0hgVbE-Jmg54-6BWa7dPftPzrRZiSSnSG-CVc,1698
|
@@ -179,14 +179,14 @@ inspect_ai/_view/www/src/log/remoteLogFile.mjs,sha256=FZoE7tSh5SK2oPfk67CsJtuQWq
|
|
179
179
|
inspect_ai/_view/www/src/log-reader/Log-Reader.mjs,sha256=ScTs8e5tOlc4jLoBqPQOD6EB1OiFjYqF7bUPFWhT0BE,591
|
180
180
|
inspect_ai/_view/www/src/log-reader/Native-Log-Reader.mjs,sha256=IkFp9lsGvB3wryAqmYZz4H3D8heiO2w_Zh1I3NgiOG4,234
|
181
181
|
inspect_ai/_view/www/src/log-reader/Open-AI-Log-Reader.mjs,sha256=3Rt5AZV07ffFHZslCoo5E_TMOh4yuB01CRHDrptPBDM,8116
|
182
|
-
inspect_ai/_view/www/src/navbar/Navbar.mjs,sha256=
|
182
|
+
inspect_ai/_view/www/src/navbar/Navbar.mjs,sha256=lLUjbpaMnnj8WtJumgdmyGb9r_fip-mHOyeIDdFHjJA,10934
|
183
183
|
inspect_ai/_view/www/src/navbar/SecondaryBar.mjs,sha256=5Sn8jh_rdD0s1CT1qW3fsl-_MX-woYuDDSFDJWkVlmc,4424
|
184
184
|
inspect_ai/_view/www/src/plan/PlanCard.mjs,sha256=2JGBPFiGTJmf9DR9IuwgcrACO_3mPFpap2mwokCzwTk,10326
|
185
185
|
inspect_ai/_view/www/src/samples/SampleDialog.mjs,sha256=5cBb2UIRe7Z6BfFAJ4Q1djDJSZZdia-2E0rC6X2a5m0,3709
|
186
|
-
inspect_ai/_view/www/src/samples/SampleDisplay.mjs,sha256=
|
186
|
+
inspect_ai/_view/www/src/samples/SampleDisplay.mjs,sha256=wSn0vPR5KGwywK7AKefy1zEDp2tZpSckRvrB8vIOBL4,15756
|
187
187
|
inspect_ai/_view/www/src/samples/SampleError.mjs,sha256=48in4mqQpe2KxQK9__3rBfK5mEKIqPrIscWeCW1r_Hk,2674
|
188
188
|
inspect_ai/_view/www/src/samples/SampleLimit.mjs,sha256=_IT5kKng8L3A26fHjG0vANAn2y73Nb6j5A_90osQz2E,627
|
189
|
-
inspect_ai/_view/www/src/samples/SampleList.mjs,sha256=
|
189
|
+
inspect_ai/_view/www/src/samples/SampleList.mjs,sha256=H4W_uS5aMI6-pxYr9k0NsvgehddRaz9--Bj-X3SB4Hc,11184
|
190
190
|
inspect_ai/_view/www/src/samples/SampleScoreView.mjs,sha256=ztS76-Ybz2e6epDZMBVTg2ggLyHmNikgzWMG-cfyLH4,4249
|
191
191
|
inspect_ai/_view/www/src/samples/SampleScores.mjs,sha256=cbYQO8K4b0-X4MCX38Py4UjwA13inQLNEu0eO9VXZ5E,672
|
192
192
|
inspect_ai/_view/www/src/samples/SampleTranscript.mjs,sha256=D_Ob2yUsRBcq5utHiyiDYiNRK5pNcu9SDClhUkaApfU,577
|
@@ -212,7 +212,7 @@ inspect_ai/_view/www/src/samples/transcript/SampleLimitEventView.mjs,sha256=y119
|
|
212
212
|
inspect_ai/_view/www/src/samples/transcript/ScoreEventView.mjs,sha256=rvgLbIs_22sX96_zswO_6bvowQ2MkSKDGqU6PqiZLhM,3072
|
213
213
|
inspect_ai/_view/www/src/samples/transcript/StepEventView.mjs,sha256=ciEkNfeuzitn8KnyhDZmFPfSPtkhtzLmfWAiTzJVxK8,4185
|
214
214
|
inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.mjs,sha256=uGh6sYS77IPT6OU-JBR3smsvXXTT98MqS8uZ0qQ2uLM,3938
|
215
|
-
inspect_ai/_view/www/src/samples/transcript/ToolEventView.mjs,sha256=
|
215
|
+
inspect_ai/_view/www/src/samples/transcript/ToolEventView.mjs,sha256=UZDiaMSEXA9KvXNES4rKF6s48RWubTS_MEje5lrr6N8,2191
|
216
216
|
inspect_ai/_view/www/src/samples/transcript/TranscriptState.mjs,sha256=ln8aLwC70esKQETbJBEJwnxnoQnZRAr460YbathOv0Y,2115
|
217
217
|
inspect_ai/_view/www/src/samples/transcript/TranscriptView.mjs,sha256=h1b0_hB9qUa6b1supK7s1ghK67O3NZY8F06pHeBJ0K8,7256
|
218
218
|
inspect_ai/_view/www/src/samples/transcript/Types.mjs,sha256=yFGoynBzv27fG3qFMJuYSWNJmAnYsbABMI79b_VzFxc,2079
|
@@ -274,47 +274,47 @@ inspect_ai/log/_bundle.py,sha256=5Uy-s64_SFokZ7WRzti9mD7yoKrd2sOzdvqKyahoiC4,804
|
|
274
274
|
inspect_ai/log/_condense.py,sha256=zWSvdq3bQ6Pe8yiOWHVj5Gc--he9oogQ3SI_RXJ5z3o,9568
|
275
275
|
inspect_ai/log/_convert.py,sha256=62cwEY5zhz76GaTB5cwkRUgWQz5kehxQ82o7ItBcX2U,3461
|
276
276
|
inspect_ai/log/_file.py,sha256=RqadF_vNbhgx7PxghVmg-1WiJkpz2vwfq3AJ1C_umOM,17685
|
277
|
-
inspect_ai/log/_log.py,sha256=
|
277
|
+
inspect_ai/log/_log.py,sha256=bnPnDAodO7FJhdMUc8nBX-CYnF9pPHSh2r4wfe8J_0c,18844
|
278
278
|
inspect_ai/log/_message.py,sha256=VCKvYcTOH6M9AvYykqx8D7fgXnvti0yDS7vY5To3zOI,1927
|
279
279
|
inspect_ai/log/_retry.py,sha256=e7a2hjl3Ncl8b8sU7CsDpvK8DV0b1uSRLeokRX1mt34,2109
|
280
280
|
inspect_ai/log/_samples.py,sha256=b-5-wT1rD5KQTfVqsYlrQPSabj9glmHM9SmZg9mDk-c,3814
|
281
281
|
inspect_ai/log/_transcript.py,sha256=fVMO7oPJvD_c09XfyDUuLzt2Kmxmn1c47wpi4IyhhQE,9994
|
282
282
|
inspect_ai/log/_recorders/__init__.py,sha256=-ECELTfjeWwDuEIBSXO2oxEtJ6Dn0ZQYUxrEy0klN34,350
|
283
283
|
inspect_ai/log/_recorders/create.py,sha256=WB-fms0dBDHlTtTa_a_r0fFc6UPRvQZKZT7d_Inp-EU,1103
|
284
|
-
inspect_ai/log/_recorders/eval.py,sha256=
|
284
|
+
inspect_ai/log/_recorders/eval.py,sha256=usR4SYl7O4XU5_yjf030RIRBuLXojeLBYENTZtli_8I,17375
|
285
285
|
inspect_ai/log/_recorders/file.py,sha256=bY0fCr4_gWgLG0g2lYgts7wJYxaiKFdKEz3csu9WCwo,2457
|
286
286
|
inspect_ai/log/_recorders/json.py,sha256=edsglc71m-RUqddv5D_N4g24XsGBVOK6CoVXPZ_g1ZE,8810
|
287
287
|
inspect_ai/log/_recorders/recorder.py,sha256=yvW_D99QxUQmnF5EiGsWIVetBXdssMUcsq5us9oRzx4,1551
|
288
288
|
inspect_ai/model/__init__.py,sha256=mBs6hmdWu6KhTQCXFh_NHrCw9oQ9-mn6wDLTDqjguN8,2028
|
289
289
|
inspect_ai/model/_cache.py,sha256=VlMQGPgFxJGPXktqWy_wMpA3iJWmvA8siSdmX71MEHQ,13517
|
290
|
-
inspect_ai/model/_call_tools.py,sha256=
|
290
|
+
inspect_ai/model/_call_tools.py,sha256=IxykjNqUAxBpPSJvW_0GuJRJX8jvkjlu51T63sNIhHI,13468
|
291
291
|
inspect_ai/model/_chat_message.py,sha256=Zc2hHMLbWONuhLx-XYPOekDD20mF4uTU62WRTsry3c4,4355
|
292
|
-
inspect_ai/model/_generate_config.py,sha256=
|
292
|
+
inspect_ai/model/_generate_config.py,sha256=rkBSl7FWdPB3ZpJ8yJJKkWYM5vrKpYMz2wK-dqtnGzM,8682
|
293
293
|
inspect_ai/model/_image.py,sha256=kpO2Bn_-c-dK80HuPOPH1eSNmcoc39kofwf4yTTiTFE,477
|
294
|
-
inspect_ai/model/_model.py,sha256=
|
294
|
+
inspect_ai/model/_model.py,sha256=pI7nwBio0Kx4dYz5GSV1o5h31gSI-61dOBo5Zp-qAH8,29184
|
295
295
|
inspect_ai/model/_model_call.py,sha256=r6ObHZwm7jy1qX2qxvAP6iPV3BhdGThL-VH-QEawQhA,2017
|
296
296
|
inspect_ai/model/_model_output.py,sha256=iv0bk6U5jRnhqeULIMAVrC57j2Be-EjOhe7kvxAzCcg,6537
|
297
297
|
inspect_ai/model/_registry.py,sha256=Cr2y32EqLnOqLbSWoXHVK4ivTTzCUhJuACxoTyPt8kY,2032
|
298
|
-
inspect_ai/model/_render.py,sha256=
|
299
|
-
inspect_ai/model/_trace.py,sha256=
|
298
|
+
inspect_ai/model/_render.py,sha256=bGtGdFFWvNdeBjs60Junk0I8xVnBOj4Oe3a-86BjPtc,802
|
299
|
+
inspect_ai/model/_trace.py,sha256=Zr4cZGICQO85L0tRqW5oehuvPFk1EO5NBUtaJtLKBwk,1601
|
300
300
|
inspect_ai/model/_providers/anthropic.py,sha256=lgWQDhr4d7EjPJYwj021YRc8VZAtPRmTwzJthVyMqGg,20801
|
301
|
-
inspect_ai/model/_providers/azureai.py,sha256=
|
302
|
-
inspect_ai/model/_providers/bedrock.py,sha256=
|
301
|
+
inspect_ai/model/_providers/azureai.py,sha256=xbk0iY7-4WWUJaZzxNa1QiWpzZyRPLb2doLfJgzRf0U,13939
|
302
|
+
inspect_ai/model/_providers/bedrock.py,sha256=OUG36IEeTA4iOZX5dE7r9TEY57rqCjb6EwiZGhDV9DQ,23147
|
303
303
|
inspect_ai/model/_providers/cloudflare.py,sha256=h6ubjf0kxyMM7Aj2tm68tWa-2R7RAXNGp1O6KMvi0Gw,4143
|
304
304
|
inspect_ai/model/_providers/google.py,sha256=WA1eRIjMwJoOrnaPq1TiodIIGLBURPaBBRwQaOHM4VU,20281
|
305
305
|
inspect_ai/model/_providers/grok.py,sha256=dS88ueXiD-kHAFr0jCoTpTGLGa2VsUlB_TFP8L_2lBM,995
|
306
306
|
inspect_ai/model/_providers/groq.py,sha256=ocUVS7zmCCYdlWuVx-9kDm8H-3dqp0ytSb25PBpl-2w,9706
|
307
|
-
inspect_ai/model/_providers/hf.py,sha256=
|
307
|
+
inspect_ai/model/_providers/hf.py,sha256=9eWBpNolkF7-UlgIdo9CHlBdJCW1U3Vyl1eqr6MD1Ng,16979
|
308
308
|
inspect_ai/model/_providers/llama_cpp_python.py,sha256=i2I56Damgb8VDhMuPxPca24fVhlajDHzxCTYFnT41uI,702
|
309
309
|
inspect_ai/model/_providers/mistral.py,sha256=IXiPehZKiUbbAb13CGOFRpCyyn01pcxHUcluV_1OdMA,15128
|
310
310
|
inspect_ai/model/_providers/mockllm.py,sha256=gL9f-f5TOdE4a0GVENr3cOIIp2kv8zVXWPZ608rouGk,2440
|
311
311
|
inspect_ai/model/_providers/ollama.py,sha256=mBPSxaEkiH_RnlHKqOyFBlXObQhc2dfjL-rCKrea5u8,675
|
312
|
-
inspect_ai/model/_providers/openai.py,sha256=
|
312
|
+
inspect_ai/model/_providers/openai.py,sha256=FfP4nCjvGrLbD8ddSpvij5yFCG5Uu6lSdD4sxKKoMVE,15930
|
313
313
|
inspect_ai/model/_providers/openai_o1.py,sha256=vRjX-iTP0IyUb_0hiRY0YXjoyRpSkbZw6v4lvZxcJVw,12234
|
314
|
-
inspect_ai/model/_providers/providers.py,sha256=
|
314
|
+
inspect_ai/model/_providers/providers.py,sha256=IZn7gn993LJQ-EmN6ZhA68-CMgaeUmhQGEMRasazvL4,5631
|
315
315
|
inspect_ai/model/_providers/together.py,sha256=9GKN--wCRQ2pT9x0mIq7hSOFV1OM-Ps6JwJ1Rj26GEM,9468
|
316
316
|
inspect_ai/model/_providers/vertex.py,sha256=vHy9YgTj3d_B3R7E3PbNyLB0dkvsgmHlNFPwvGq_qjg,16030
|
317
|
-
inspect_ai/model/_providers/vllm.py,sha256=
|
317
|
+
inspect_ai/model/_providers/vllm.py,sha256=cggwgDMEwdF9DKdqGxo-XMMkDte-rQoHIBf6nipZ1Pg,14093
|
318
318
|
inspect_ai/model/_providers/util/__init__.py,sha256=wuAqBLmf1vQT4fJuiyVi0jzW4txWfM4jFG5E9WoPrgc,665
|
319
319
|
inspect_ai/model/_providers/util/chatapi.py,sha256=h8GePQ53VgPpn75QQJfoO5IMUMiTq3heMnjKC3vj13c,3659
|
320
320
|
inspect_ai/model/_providers/util/hf_handler.py,sha256=0brDEI7k4N2gi39_psNr17h6Tu7sQ8uMUCb2ZaFpS0U,7613
|
@@ -342,7 +342,7 @@ inspect_ai/scorer/_reducer/reducer.py,sha256=dRFIW9_gi30i64g-AZWxDTHla7mJfqyF0dJ
|
|
342
342
|
inspect_ai/scorer/_reducer/registry.py,sha256=J2tvuuxf4jBC09_SCBZg99Qb2qQUWG8STEsw7ASWpXQ,5388
|
343
343
|
inspect_ai/scorer/_reducer/types.py,sha256=uimvzIBRK7x1Dof77gsHYe9PU3hekB1opm9DTAa4sL4,340
|
344
344
|
inspect_ai/solver/__init__.py,sha256=LLemW4Szs7uJuJFjp0KLlVS1V7M-2_PpkYS_17GGtaE,3234
|
345
|
-
inspect_ai/solver/_basic_agent.py,sha256=
|
345
|
+
inspect_ai/solver/_basic_agent.py,sha256=vvC0v4g-7hLzGCsmb_I0xa_Z3RCLwp4ak7Qk-EVl7F8,9594
|
346
346
|
inspect_ai/solver/_chain.py,sha256=F-2ZHE2KOlDAIgH1_Q23whUMH5TjYGvCHhcOgbRxe7I,2234
|
347
347
|
inspect_ai/solver/_critique.py,sha256=ddO8J7VqSEsT6kofawpn3PrcUpLjLUMFmJi0hocDZpI,3504
|
348
348
|
inspect_ai/solver/_fork.py,sha256=Ge1PwpCHjeZhm2CLAWKss2uFuQd9BGzVinLOW6UOnfE,2880
|
@@ -362,6 +362,7 @@ inspect_ai/tool/_tool_def.py,sha256=OQo6jhtDfrj2uDDKeoT4g8Ju1r8uroK6DqQkpyUikEA,
|
|
362
362
|
inspect_ai/tool/_tool_description.py,sha256=SZTQzehReNNKwQ0iUL6v4pPfEptgf3UOP4J888JV18M,524
|
363
363
|
inspect_ai/tool/_tool_info.py,sha256=zoAUkA99VbgSc5bLPGwkYRT5u8rzS9NjrrxHR24A214,7865
|
364
364
|
inspect_ai/tool/_tool_params.py,sha256=oLYlxcyKtIbMxZh5yowSynNrBR5sWj4nrdel6pFSIbc,1158
|
365
|
+
inspect_ai/tool/_tool_transcript.py,sha256=rMibJoBN5Nn41RwInqk45h9RDPxZGu81saDf4SkpqTs,904
|
365
366
|
inspect_ai/tool/_tool_with.py,sha256=iZYVhuZSL0Q9PFKz-ob_923E77WzuQ2U1Qo4DfdWuBo,1881
|
366
367
|
inspect_ai/tool/_tools/_execute.py,sha256=DkFlvUTvI595H1zH5IKArhbyBo8YZWqq9tvoUMdvlaw,2823
|
367
368
|
inspect_ai/tool/_tools/_web_search.py,sha256=YqZ3E65ssdq1X2NSH9Mqt5INXdPVQOdKa3PbKi7XjAY,7828
|
@@ -392,23 +393,23 @@ inspect_ai/util/_subprocess.py,sha256=DZVqMNSrTGDXAo-z7jLSWXXk1t_rFPZPQapwWq2XR8
|
|
392
393
|
inspect_ai/util/_subtask.py,sha256=exZtvH8Kw59ptE9Sxpm-JIJYLZ2iwAd5t1UWVIW31lo,4616
|
393
394
|
inspect_ai/util/_trace.py,sha256=DW0nuUmRegML85WwllKtEU1DEZtnWUntvsCcFvzZ3P8,1023
|
394
395
|
inspect_ai/util/_sandbox/__init__.py,sha256=oQ_lR8fYvQ_AHvb3KARyjs64YQw0BYMxPdJ3gVf4A-8,972
|
395
|
-
inspect_ai/util/_sandbox/context.py,sha256=
|
396
|
-
inspect_ai/util/_sandbox/environment.py,sha256=
|
397
|
-
inspect_ai/util/_sandbox/limits.py,sha256=
|
398
|
-
inspect_ai/util/_sandbox/local.py,sha256=
|
396
|
+
inspect_ai/util/_sandbox/context.py,sha256=gwSipnKGsc9FaE1wALVTXR17GmqgjtJ87ZipuW02VK8,7186
|
397
|
+
inspect_ai/util/_sandbox/environment.py,sha256=1w1tMZOAjdHdSOiui-LAE2nd6_vKlhgnEYb_JGsFuvQ,9689
|
398
|
+
inspect_ai/util/_sandbox/limits.py,sha256=K-GjKfSugOq8KP0wW_oF6qFrXsOnMV0C88QUWkjPJ9o,2164
|
399
|
+
inspect_ai/util/_sandbox/local.py,sha256=qAxBz04xZESewt3gyfWKaErJf9uwvjmxhTZyMtgFT7g,3486
|
399
400
|
inspect_ai/util/_sandbox/registry.py,sha256=mQwWwqzaCXF1FZ2fcVujpp3WMA35GWnh1w43SoIJAVM,2145
|
400
401
|
inspect_ai/util/_sandbox/self_check.py,sha256=H8afjMN1rRE3xnWEt7U5EcHqalFtiTsu0CSVCdFO1uM,14101
|
401
402
|
inspect_ai/util/_sandbox/service.py,sha256=rfedl-gZ9fGA1SJF9P9ObdBgcPHven8UlYIz0b1Xqnw,10340
|
402
403
|
inspect_ai/util/_sandbox/docker/cleanup.py,sha256=MK6UlADcWtTDotppeVJga2ibf9Ud-e4V-5ReoNbmhqg,4793
|
403
404
|
inspect_ai/util/_sandbox/docker/compose.py,sha256=hGUJ3bkg0eKJLWTJAfBkrGOGlg4Ry11Dq2bQrckcxeA,9135
|
404
|
-
inspect_ai/util/_sandbox/docker/config.py,sha256=
|
405
|
-
inspect_ai/util/_sandbox/docker/docker.py,sha256=
|
405
|
+
inspect_ai/util/_sandbox/docker/config.py,sha256=TqKafhbC8yxbWtCm_HLbVFCaozIjDL8t4zM8Rc_zIJk,2787
|
406
|
+
inspect_ai/util/_sandbox/docker/docker.py,sha256=yEThuWfbFnRhIzOQb4AhX6DbJsH2FHsXKj-YgoEZEHQ,15878
|
406
407
|
inspect_ai/util/_sandbox/docker/internal.py,sha256=pwK3xl-fx_5FVmVmvautE8R7op3XCjgiA-1JqlRcHII,1311
|
407
408
|
inspect_ai/util/_sandbox/docker/prereqs.py,sha256=LKWt2T5CJ8hZ25SFDGX9FTGXFAtHzvQoolOffjQKlm8,3341
|
408
|
-
inspect_ai/util/_sandbox/docker/util.py,sha256=
|
409
|
-
inspect_ai-0.3.
|
410
|
-
inspect_ai-0.3.
|
411
|
-
inspect_ai-0.3.
|
412
|
-
inspect_ai-0.3.
|
413
|
-
inspect_ai-0.3.
|
414
|
-
inspect_ai-0.3.
|
409
|
+
inspect_ai/util/_sandbox/docker/util.py,sha256=aBbS-ycKIW6xUlAfLrefLIljewlhiefyBu_zuevVsv0,2818
|
410
|
+
inspect_ai-0.3.53.dist-info/LICENSE,sha256=aYPffOl9TwBXDQ8g33Jh6AsBhobb3A76qNm7r2HZsps,1079
|
411
|
+
inspect_ai-0.3.53.dist-info/METADATA,sha256=S_1EtL0vCgmKXG1jDH3cdNn-p9-bImhQPdEDufwxeeY,4494
|
412
|
+
inspect_ai-0.3.53.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
413
|
+
inspect_ai-0.3.53.dist-info/entry_points.txt,sha256=WGGLmzTzDWLzYfiyovSY6oEKuf-gqzSDNOb5V-hk3fM,54
|
414
|
+
inspect_ai-0.3.53.dist-info/top_level.txt,sha256=Tp3za30CHXJEKLk8xLe9qGsW4pBzJpEIOMHOHNCXiVo,11
|
415
|
+
inspect_ai-0.3.53.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|