inspect-ai 0.3.59__py3-none-any.whl → 0.3.61__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 +0 -8
- inspect_ai/_display/textual/widgets/samples.py +1 -1
- inspect_ai/_eval/eval.py +10 -1
- inspect_ai/_eval/loader.py +79 -19
- inspect_ai/_eval/registry.py +6 -0
- inspect_ai/_eval/score.py +2 -1
- inspect_ai/_eval/task/generate.py +41 -35
- inspect_ai/_eval/task/results.py +6 -5
- inspect_ai/_eval/task/run.py +21 -15
- inspect_ai/_util/hooks.py +17 -7
- inspect_ai/_view/www/dist/assets/index.js +262 -303
- inspect_ai/_view/www/package.json +1 -1
- inspect_ai/_view/www/src/App.mjs +6 -6
- inspect_ai/_view/www/src/Types.mjs +1 -1
- inspect_ai/_view/www/src/api/Types.ts +133 -0
- inspect_ai/_view/www/src/api/{api-browser.mjs → api-browser.ts} +25 -13
- inspect_ai/_view/www/src/api/api-http.ts +219 -0
- inspect_ai/_view/www/src/api/api-shared.ts +47 -0
- inspect_ai/_view/www/src/api/{api-vscode.mjs → api-vscode.ts} +22 -19
- inspect_ai/_view/www/src/api/{client-api.mjs → client-api.ts} +93 -53
- inspect_ai/_view/www/src/api/index.ts +51 -0
- inspect_ai/_view/www/src/api/jsonrpc.ts +225 -0
- inspect_ai/_view/www/src/components/DownloadButton.mjs +1 -1
- inspect_ai/_view/www/src/index.js +2 -2
- inspect_ai/_view/www/src/log/{remoteLogFile.mjs → remoteLogFile.ts} +62 -46
- inspect_ai/_view/www/src/navbar/Navbar.mjs +1 -1
- inspect_ai/_view/www/src/navbar/SecondaryBar.mjs +1 -1
- inspect_ai/_view/www/src/samples/SampleList.mjs +1 -1
- inspect_ai/_view/www/src/samples/SampleScores.mjs +1 -1
- inspect_ai/_view/www/src/samples/SamplesDescriptor.mjs +14 -14
- inspect_ai/_view/www/src/samples/SamplesTab.mjs +10 -10
- inspect_ai/_view/www/src/samples/tools/SortFilter.mjs +2 -2
- inspect_ai/_view/www/src/utils/{Json.mjs → json-worker.ts} +1 -3
- inspect_ai/_view/www/src/utils/vscode.ts +36 -0
- inspect_ai/_view/www/src/workspace/WorkSpace.mjs +1 -1
- inspect_ai/approval/_human/manager.py +1 -1
- inspect_ai/model/_call_tools.py +55 -0
- inspect_ai/model/_chat_message.py +2 -2
- inspect_ai/model/_conversation.py +1 -4
- inspect_ai/model/_generate_config.py +2 -8
- inspect_ai/model/_model.py +90 -25
- inspect_ai/model/_model_output.py +15 -0
- inspect_ai/model/_openai.py +383 -0
- inspect_ai/model/_providers/anthropic.py +52 -14
- inspect_ai/model/_providers/azureai.py +1 -1
- inspect_ai/model/_providers/goodfire.py +248 -0
- inspect_ai/model/_providers/groq.py +7 -3
- inspect_ai/model/_providers/hf.py +6 -0
- inspect_ai/model/_providers/mistral.py +2 -1
- inspect_ai/model/_providers/openai.py +36 -202
- inspect_ai/model/_providers/openai_o1.py +2 -4
- inspect_ai/model/_providers/providers.py +22 -0
- inspect_ai/model/_providers/together.py +4 -4
- inspect_ai/model/_providers/util/__init__.py +2 -3
- inspect_ai/model/_providers/util/hf_handler.py +1 -1
- inspect_ai/model/_providers/util/llama31.py +1 -1
- inspect_ai/model/_providers/util/util.py +0 -76
- inspect_ai/scorer/_metric.py +3 -0
- inspect_ai/scorer/_scorer.py +2 -1
- inspect_ai/solver/__init__.py +4 -0
- inspect_ai/solver/_basic_agent.py +65 -55
- inspect_ai/solver/_bridge/__init__.py +3 -0
- inspect_ai/solver/_bridge/bridge.py +100 -0
- inspect_ai/solver/_bridge/patch.py +170 -0
- inspect_ai/{util → solver}/_limit.py +13 -0
- inspect_ai/solver/_solver.py +6 -0
- inspect_ai/solver/_task_state.py +37 -7
- inspect_ai/tool/_tools/_web_browser/_web_browser.py +3 -1
- inspect_ai/tool/beta/_computer/_resources/Dockerfile +1 -3
- inspect_ai/tool/beta/_computer/_resources/entrypoint/x11vnc_startup.sh +1 -1
- inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml +10 -0
- inspect_ai/util/__init__.py +0 -2
- inspect_ai/util/_display.py +5 -0
- inspect_ai/util/_sandbox/docker/prereqs.py +1 -1
- inspect_ai/util/_sandbox/self_check.py +51 -28
- {inspect_ai-0.3.59.dist-info → inspect_ai-0.3.61.dist-info}/METADATA +3 -2
- {inspect_ai-0.3.59.dist-info → inspect_ai-0.3.61.dist-info}/RECORD +81 -76
- inspect_ai/_view/www/src/api/Types.mjs +0 -117
- inspect_ai/_view/www/src/api/api-http.mjs +0 -300
- inspect_ai/_view/www/src/api/api-shared.mjs +0 -10
- inspect_ai/_view/www/src/api/index.mjs +0 -49
- inspect_ai/_view/www/src/api/jsonrpc.mjs +0 -208
- inspect_ai/_view/www/src/utils/vscode.mjs +0 -16
- inspect_ai/tool/beta/_computer/_resources/image_home_dir/Desktop/XPaint.desktop +0 -10
- {inspect_ai-0.3.59.dist-info → inspect_ai-0.3.61.dist-info}/LICENSE +0 -0
- {inspect_ai-0.3.59.dist-info → inspect_ai-0.3.61.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.59.dist-info → inspect_ai-0.3.61.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.59.dist-info → inspect_ai-0.3.61.dist-info}/top_level.txt +0 -0
@@ -32,6 +32,7 @@ async def self_check(sandbox_env: SandboxEnvironment) -> dict[str, bool | str]:
|
|
32
32
|
for fn in [
|
33
33
|
test_read_and_write_file_text,
|
34
34
|
test_read_and_write_file_binary,
|
35
|
+
test_write_file_text_utf,
|
35
36
|
test_read_and_write_file_including_directory_absolute,
|
36
37
|
test_read_and_write_file_including_directory_relative,
|
37
38
|
test_read_file_zero_length,
|
@@ -64,33 +65,39 @@ async def self_check(sandbox_env: SandboxEnvironment) -> dict[str, bool | str]:
|
|
64
65
|
|
65
66
|
|
66
67
|
async def _cleanup_file(sandbox_env: SandboxEnvironment, filename: str) -> None:
|
67
|
-
res = await sandbox_env.exec(["rm", filename])
|
68
|
+
res = await sandbox_env.exec(["rm", "-f", "--", filename])
|
68
69
|
assert res.success
|
69
70
|
|
70
71
|
|
71
72
|
async def test_read_and_write_file_text(sandbox_env: SandboxEnvironment) -> None:
|
72
|
-
|
73
|
-
|
74
|
-
)
|
75
|
-
written_file_string = await sandbox_env.read_file(
|
76
|
-
"test_read_and_write_file_text.file", text=True
|
77
|
-
)
|
73
|
+
file_name = "test_read_and_write_file_text.file"
|
74
|
+
await sandbox_env.write_file(file_name, "great #content\nincluding newlines")
|
75
|
+
written_file_string = await sandbox_env.read_file(file_name, text=True)
|
78
76
|
assert "great #content\nincluding newlines" == written_file_string, (
|
79
77
|
f"unexpected content: [{written_file_string}]"
|
80
78
|
)
|
81
|
-
await _cleanup_file(sandbox_env,
|
79
|
+
await _cleanup_file(sandbox_env, file_name)
|
80
|
+
|
81
|
+
|
82
|
+
async def test_write_file_text_utf(sandbox_env: SandboxEnvironment) -> None:
|
83
|
+
utf_content = "✨☽︎✨🌞︎︎✨🚀✨"
|
84
|
+
file_name = "test_write_file_text_utf.file"
|
85
|
+
await sandbox_env.write_file(file_name, utf_content)
|
86
|
+
file_with_utf_content = await sandbox_env.read_file(file_name, text=True)
|
87
|
+
assert isinstance(file_with_utf_content, str)
|
88
|
+
assert file_with_utf_content == utf_content
|
89
|
+
await _cleanup_file(sandbox_env, file_name)
|
82
90
|
|
83
91
|
|
84
92
|
async def test_read_and_write_file_binary(sandbox_env: SandboxEnvironment) -> None:
|
93
|
+
file_name = "test_read_and_write_file_binary.file"
|
85
94
|
await sandbox_env.write_file(
|
86
|
-
|
95
|
+
file_name, b"\xc3\x28"
|
87
96
|
) # invalid UTF-8 from https://stackoverflow.com/a/17199164/116509
|
88
97
|
|
89
|
-
written_file_bytes = await sandbox_env.read_file(
|
90
|
-
"test_read_and_write_file_binary.file", text=False
|
91
|
-
)
|
98
|
+
written_file_bytes = await sandbox_env.read_file(file_name, text=False)
|
92
99
|
assert b"\xc3\x28" == written_file_bytes
|
93
|
-
await _cleanup_file(sandbox_env,
|
100
|
+
await _cleanup_file(sandbox_env, file_name)
|
94
101
|
|
95
102
|
|
96
103
|
async def test_read_and_write_file_including_directory_absolute(
|
@@ -101,6 +108,7 @@ async def test_read_and_write_file_including_directory_absolute(
|
|
101
108
|
written_file_string = await sandbox_env.read_file(file_name, text=True)
|
102
109
|
assert "absolutely enjoying being in a directory" == written_file_string
|
103
110
|
await _cleanup_file(sandbox_env, file_name)
|
111
|
+
await sandbox_env.exec(["rmdir", "/tmp/test_rw_including_directory_absolute"])
|
104
112
|
|
105
113
|
|
106
114
|
async def test_read_and_write_file_including_directory_relative(
|
@@ -111,20 +119,23 @@ async def test_read_and_write_file_including_directory_relative(
|
|
111
119
|
written_file_string = await sandbox_env.read_file(file_name, text=True)
|
112
120
|
assert "relatively enjoying being in a directory" == written_file_string
|
113
121
|
await _cleanup_file(sandbox_env, file_name)
|
122
|
+
await sandbox_env.exec(["rmdir", "test_rw_including_directory_relative"])
|
114
123
|
|
115
124
|
|
116
125
|
async def test_read_file_zero_length(sandbox_env: SandboxEnvironment) -> None:
|
117
|
-
|
118
|
-
|
126
|
+
file_name = "zero_length_file.file"
|
127
|
+
await sandbox_env.exec(["touch", file_name])
|
128
|
+
zero_length = await sandbox_env.read_file(file_name, text=True)
|
119
129
|
assert isinstance(zero_length, str)
|
120
130
|
assert zero_length == ""
|
131
|
+
await _cleanup_file(sandbox_env, file_name)
|
121
132
|
|
122
133
|
|
123
134
|
async def test_read_file_not_found(sandbox_env: SandboxEnvironment) -> None:
|
124
|
-
|
135
|
+
file_name = "nonexistent"
|
125
136
|
with Raises(FileNotFoundError) as e_info:
|
126
|
-
await sandbox_env.read_file(
|
127
|
-
assert
|
137
|
+
await sandbox_env.read_file(file_name, text=True)
|
138
|
+
assert file_name in str(e_info.value)
|
128
139
|
|
129
140
|
|
130
141
|
async def test_read_file_not_allowed(sandbox_env: SandboxEnvironment) -> None:
|
@@ -134,22 +145,23 @@ async def test_read_file_not_allowed(sandbox_env: SandboxEnvironment) -> None:
|
|
134
145
|
with Raises(PermissionError) as e_info:
|
135
146
|
await sandbox_env.read_file(file_name, text=True)
|
136
147
|
assert file_name in str(e_info.value)
|
148
|
+
await sandbox_env.exec(["chmod", "+r", file_name])
|
137
149
|
await _cleanup_file(sandbox_env, file_name)
|
138
150
|
|
139
151
|
|
140
152
|
async def test_read_file_is_directory(sandbox_env: SandboxEnvironment) -> None:
|
141
|
-
|
153
|
+
file_name = "/etc"
|
142
154
|
with Raises(IsADirectoryError) as e_info:
|
143
|
-
await sandbox_env.read_file(
|
155
|
+
await sandbox_env.read_file(file_name, text=True)
|
144
156
|
assert "directory" in str(e_info.value)
|
145
157
|
|
146
158
|
|
147
159
|
async def test_read_file_nonsense_name(
|
148
160
|
sandbox_env: SandboxEnvironment,
|
149
161
|
) -> None:
|
150
|
-
|
162
|
+
file_name = "https:/en.wikipedia.org/wiki/Bart%C5%82omiej_Kasprzykowski"
|
151
163
|
with Raises(FileNotFoundError) as e_info:
|
152
|
-
await sandbox_env.read_file(
|
164
|
+
await sandbox_env.read_file(file_name, text=True)
|
153
165
|
assert "wikipedia" in str(e_info.value)
|
154
166
|
|
155
167
|
|
@@ -159,24 +171,28 @@ async def test_read_file_limit(sandbox_env: SandboxEnvironment) -> None:
|
|
159
171
|
# Patch limit down to 1KiB for the test to save us from writing a 100 MiB file.
|
160
172
|
with mock.patch.object(SandboxEnvironmentLimits, "MAX_READ_FILE_SIZE", 1024):
|
161
173
|
with Raises(OutputLimitExceededError) as e_info:
|
162
|
-
await sandbox_env.read_file(
|
174
|
+
await sandbox_env.read_file(file_name, text=True)
|
163
175
|
assert "limit of 100 MiB was exceeded" in str(e_info.value)
|
164
176
|
await _cleanup_file(sandbox_env, file_name)
|
165
177
|
|
166
178
|
|
167
179
|
async def test_write_file_zero_length(sandbox_env: SandboxEnvironment) -> None:
|
168
|
-
|
169
|
-
|
180
|
+
file_name = "zero_length_file.file"
|
181
|
+
await sandbox_env.write_file(file_name, "")
|
182
|
+
zero_length = await sandbox_env.read_file(file_name, text=True)
|
170
183
|
assert isinstance(zero_length, str)
|
171
184
|
assert zero_length == ""
|
185
|
+
await _cleanup_file(sandbox_env, file_name)
|
172
186
|
|
173
187
|
|
174
188
|
async def test_write_file_space(sandbox_env: SandboxEnvironment) -> None:
|
175
|
-
space = "
|
176
|
-
|
177
|
-
|
189
|
+
space = "to the moon"
|
190
|
+
file_name = "file with space.file"
|
191
|
+
await sandbox_env.write_file(file_name, space)
|
192
|
+
file_with_space = await sandbox_env.read_file(file_name, text=True)
|
178
193
|
assert isinstance(file_with_space, str)
|
179
194
|
assert file_with_space == space
|
195
|
+
await _cleanup_file(sandbox_env, file_name)
|
180
196
|
|
181
197
|
|
182
198
|
async def test_write_file_is_directory(
|
@@ -192,6 +208,9 @@ async def test_write_file_is_directory(
|
|
192
208
|
"content cannot go in a directory, dummy",
|
193
209
|
)
|
194
210
|
assert "directory" in str(e_info.value)
|
211
|
+
await sandbox_env.exec(
|
212
|
+
["rm", "-rf", "/tmp/inspect_ai_test_write_file_is_directory"]
|
213
|
+
)
|
195
214
|
|
196
215
|
|
197
216
|
async def test_write_file_without_permissions(
|
@@ -203,6 +222,8 @@ async def test_write_file_without_permissions(
|
|
203
222
|
with Raises(PermissionError) as e_info:
|
204
223
|
await sandbox_env.write_file(file_name, "this won't stick")
|
205
224
|
assert file_name in str(e_info.value)
|
225
|
+
await sandbox_env.exec(["chmod", "+w", file_name])
|
226
|
+
await _cleanup_file(sandbox_env, file_name)
|
206
227
|
|
207
228
|
|
208
229
|
async def test_write_file_exists(
|
@@ -213,6 +234,7 @@ async def test_write_file_exists(
|
|
213
234
|
await sandbox_env.write_file(file_name, "altered content")
|
214
235
|
altered_content = await sandbox_env.read_file(file_name, text=True)
|
215
236
|
assert altered_content == "altered content"
|
237
|
+
await _cleanup_file(sandbox_env, file_name)
|
216
238
|
|
217
239
|
|
218
240
|
async def test_exec_output(sandbox_env: SandboxEnvironment) -> None:
|
@@ -305,6 +327,7 @@ async def test_cwd_absolute(sandbox_env: SandboxEnvironment) -> None:
|
|
305
327
|
current_dir_contents = (await sandbox_env.exec(["ls"], cwd=cwd_directory)).stdout
|
306
328
|
assert "test_cwd_absolute.file" in current_dir_contents
|
307
329
|
await _cleanup_file(sandbox_env, file_name)
|
330
|
+
await sandbox_env.exec(["rmdir", cwd_directory])
|
308
331
|
|
309
332
|
|
310
333
|
async def test_exec_stdout_is_limited(sandbox_env: SandboxEnvironment) -> None:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: inspect_ai
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.61
|
4
4
|
Summary: Framework for large language model evaluations
|
5
5
|
Author: UK AI Safety Institute
|
6
6
|
License: MIT License
|
@@ -54,6 +54,7 @@ Requires-Dist: aioboto3; extra == "dev"
|
|
54
54
|
Requires-Dist: azure-ai-inference; extra == "dev"
|
55
55
|
Requires-Dist: google-cloud-aiplatform; extra == "dev"
|
56
56
|
Requires-Dist: google-generativeai; extra == "dev"
|
57
|
+
Requires-Dist: goodfire; extra == "dev"
|
57
58
|
Requires-Dist: groq; extra == "dev"
|
58
59
|
Requires-Dist: ipython; extra == "dev"
|
59
60
|
Requires-Dist: mistralai; extra == "dev"
|
@@ -67,7 +68,7 @@ Requires-Dist: pytest-asyncio; extra == "dev"
|
|
67
68
|
Requires-Dist: pytest-cov; extra == "dev"
|
68
69
|
Requires-Dist: pytest-dotenv; extra == "dev"
|
69
70
|
Requires-Dist: pytest-xdist; extra == "dev"
|
70
|
-
Requires-Dist: ruff==0.9.
|
71
|
+
Requires-Dist: ruff==0.9.4; extra == "dev"
|
71
72
|
Requires-Dist: textual-dev>=0.86.2; extra == "dev"
|
72
73
|
Requires-Dist: types-PyYAML; extra == "dev"
|
73
74
|
Requires-Dist: types-beautifulsoup4; 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=5smokbnQGpOe72WXlpDy1QWuWbjxILKnl5UPvgfW0Yk,3678
|
6
|
-
inspect_ai/_cli/eval.py,sha256=
|
6
|
+
inspect_ai/_cli/eval.py,sha256=LW2KH4iENl5QF10ItTwHzHM7v26RPS7-1XevaQjSa5E,31968
|
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
|
@@ -36,7 +36,7 @@ inspect_ai/_display/textual/widgets/clock.py,sha256=pxXQOtadf6qdNMLQh_D3bx3SIPoB
|
|
36
36
|
inspect_ai/_display/textual/widgets/console.py,sha256=lp5lbT9erPjxE1NWzvuJ5Bj8mN2ZZSBTgKQWHinMKgA,1590
|
37
37
|
inspect_ai/_display/textual/widgets/footer.py,sha256=_4Dlzp9kriUVELBEk6HQzgiwLigHe5mH0dZqWr6sGi4,1078
|
38
38
|
inspect_ai/_display/textual/widgets/port_mappings.py,sha256=mxQJGYeZh1aXNmW5z-Ukss7Zwul5qfH5CqtvTLl0BAU,2974
|
39
|
-
inspect_ai/_display/textual/widgets/samples.py,sha256=
|
39
|
+
inspect_ai/_display/textual/widgets/samples.py,sha256=x3iKSIpHnTTRTV9AXaWdoDlEZEJWpf5eaglJs399l0o,18206
|
40
40
|
inspect_ai/_display/textual/widgets/sandbox.py,sha256=vW_aXvSDROyZTvsoAYrH8wcF59k_3SJpudS1TJq5qng,1038
|
41
41
|
inspect_ai/_display/textual/widgets/task_detail.py,sha256=UCxQZkKrG6ILacuPpiJaoElezqJNb0njPWPA4IuNVDo,8289
|
42
42
|
inspect_ai/_display/textual/widgets/tasks.py,sha256=Ari4-lsqPVsvAk4ZjdsnbO3l0JBmlifrbT9D7ykoUFA,11175
|
@@ -44,22 +44,22 @@ inspect_ai/_display/textual/widgets/titlebar.py,sha256=Gh_vnsco_1lStPb34TXM9MZJf
|
|
44
44
|
inspect_ai/_display/textual/widgets/toggle.py,sha256=ToYs-S4n90yuxWcAW2OTg6AbRf0GhSz61XxfhE6XZ3Y,895
|
45
45
|
inspect_ai/_display/textual/widgets/transcript.py,sha256=rRTM9aSNHau89mSmlH6Ni9qIckYS9_Han0RtuO6QZmk,10999
|
46
46
|
inspect_ai/_eval/context.py,sha256=WHXM4IdkPD2edp58qCUjzpFguPDM_RcoqTJdRGccdDE,1344
|
47
|
-
inspect_ai/_eval/eval.py,sha256=
|
47
|
+
inspect_ai/_eval/eval.py,sha256=P0RNv8kuMyhn3lpvqSww97HCUtPFGECzTZ-mtgYC4Cg,37498
|
48
48
|
inspect_ai/_eval/evalset.py,sha256=Fh_JhIgmMgT0wV1ZwifuwtEmc-hrdGcH2KSHXMzgpxk,27219
|
49
49
|
inspect_ai/_eval/list.py,sha256=VbZ-2EI6MqrXvCN7VTz21TQSoU5K5_Q0hqhxmj5A_m0,3744
|
50
|
-
inspect_ai/_eval/loader.py,sha256=
|
51
|
-
inspect_ai/_eval/registry.py,sha256=
|
50
|
+
inspect_ai/_eval/loader.py,sha256=cAqPiAZk-bQSEGOk0xKxlSW3D0m3NhCDIVDJD4wPeiw,18813
|
51
|
+
inspect_ai/_eval/registry.py,sha256=M-ve2WKDJdSr-1Ugh8eAOekeKmfpWGwCKyNKvRN85ro,5676
|
52
52
|
inspect_ai/_eval/run.py,sha256=piC7fhmpGnDw_eGBZ4mUvMIR2WsyWrah3UE7Q-2OVyI,15466
|
53
|
-
inspect_ai/_eval/score.py,sha256=
|
53
|
+
inspect_ai/_eval/score.py,sha256=w84MupDMUziPlPUBB4xwdvXxtOvmYHFwEx9FOM8bJiA,6386
|
54
54
|
inspect_ai/_eval/task/__init__.py,sha256=yhBZbjh67QfHy7IdyFGMyQIfBflQLPLkhmz5eEv78Ec,192
|
55
55
|
inspect_ai/_eval/task/constants.py,sha256=quAKMw-4-3xKd1T_KwXCZvHYoKRXt1ZGuaHbBcWJwnA,72
|
56
56
|
inspect_ai/_eval/task/epochs.py,sha256=Ci7T6CQniSOTChv5Im2dCdSDrP-5hq19rV6iJ2uBcH8,700
|
57
57
|
inspect_ai/_eval/task/error.py,sha256=gJnd8X7LHpPz5zcOq_az6ONZICGJ0_VpSz9yhF0yRyY,1233
|
58
|
-
inspect_ai/_eval/task/generate.py,sha256=
|
58
|
+
inspect_ai/_eval/task/generate.py,sha256=lm066fbZOX7o3NB57rbwwec-ZaIFE745fiuacPCmo20,2352
|
59
59
|
inspect_ai/_eval/task/images.py,sha256=Tg3I7d7ThCYP_Lf-H5JA7xH-sH2W-m1c1YfswDwplt4,3949
|
60
60
|
inspect_ai/_eval/task/log.py,sha256=TjyLglP-3gMMDkfmxYbsxTvGIWY9FEyVtB09Fyrm_PA,6166
|
61
|
-
inspect_ai/_eval/task/results.py,sha256=
|
62
|
-
inspect_ai/_eval/task/run.py,sha256=
|
61
|
+
inspect_ai/_eval/task/results.py,sha256=GkWlgHexm0BPyxrmqLY6YSXz3AqXYMVLXNnKCYfW7ic,15785
|
62
|
+
inspect_ai/_eval/task/run.py,sha256=FdTysq-2dMFEXWIs7m8ONbXXDabx9V2saJecBurlQKs,34894
|
63
63
|
inspect_ai/_eval/task/rundir.py,sha256=QXetLfqi1lRo-PcIuu7maQpVO57c2ebnsjfZk0lsAFk,2001
|
64
64
|
inspect_ai/_eval/task/sandbox.py,sha256=kwG1SQawZFDle3hzqMe4hSdnuvShkKsmMIrcC2gnYHM,6120
|
65
65
|
inspect_ai/_eval/task/task.py,sha256=ahlM-0MJc_4wFCWTGQIsnapUn0epka_9jRVK-xdapHY,13800
|
@@ -83,7 +83,7 @@ inspect_ai/_util/file.py,sha256=49NXD2R_qVDMScBfifiHKhQ6ypB4OyX6cA3ym1k0-1U,1226
|
|
83
83
|
inspect_ai/_util/format.py,sha256=RWmK4JcB7NwRy4rXtUa1JJ52_KhxcvREhMMCFVHvzwQ,1179
|
84
84
|
inspect_ai/_util/git.py,sha256=nHCtZMLjMyFjSC_9bksBXeFz4xqxZfY6lfXr_qg2n1E,760
|
85
85
|
inspect_ai/_util/hash.py,sha256=N25e4B_Lp9ZFSQIrtMO4x-KrZopJL6gKhs-NO41pxzA,289
|
86
|
-
inspect_ai/_util/hooks.py,sha256=
|
86
|
+
inspect_ai/_util/hooks.py,sha256=8QnHCQQY_2XMYPkiPvixUgFY0E_niZvQhQDMI-eCdhM,4353
|
87
87
|
inspect_ai/_util/html.py,sha256=X62FY8gpEJ2ZQoDu2y8aQAbiBUIHKsd7DA9rWCIleo8,168
|
88
88
|
inspect_ai/_util/http.py,sha256=c4yvH48ZkETZ7sNDuNzBR0NUS4r-6WzCaolW9my13ns,3628
|
89
89
|
inspect_ai/_util/images.py,sha256=W7QJHyzuXhfy3VsLhKTzddSo1g69O9RxnTyhat48Wyo,1312
|
@@ -127,7 +127,7 @@ inspect_ai/_view/www/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9
|
|
127
127
|
inspect_ai/_view/www/index.html,sha256=LDaPH75d5TlepHfIY3wQG0aBcHTpa90Bhx0er_ES45s,910
|
128
128
|
inspect_ai/_view/www/jsconfig.json,sha256=vt1gPPYezOFeV9nofA93CmVJAKGb1QeKGuyvEn1CXgk,383
|
129
129
|
inspect_ai/_view/www/log-schema.json,sha256=4PRhm3dJvhwPhEZCDUFMwzHcIsPNLGGPuuqXHIwSUxk,95006
|
130
|
-
inspect_ai/_view/www/package.json,sha256=
|
130
|
+
inspect_ai/_view/www/package.json,sha256=y2cHvK7QKQcVk2v66ldn-syN649xnAjTVHju4QFJY2s,1189
|
131
131
|
inspect_ai/_view/www/postcss.config.cjs,sha256=jQ-QIJFuBVUTZXbFpOvUJk4MsLBr_yPOQbRwHD0ZohE,340
|
132
132
|
inspect_ai/_view/www/tsconfig.json,sha256=JjaLdpt13sgJYHDWdThRIr0gHzpRzEOKL4E2awt9r9s,277
|
133
133
|
inspect_ai/_view/www/vite.config.js,sha256=jmSUrV0YzGCcinfyKcmy2bDRUE10mmPUxMAen0bX8jY,1103
|
@@ -135,20 +135,20 @@ inspect_ai/_view/www/yarn.lock,sha256=mNwe8OBr67_9nGoPJ_sjKnRST1wc13qg8y9-74ldi4
|
|
135
135
|
inspect_ai/_view/www/dist/index.html,sha256=ErXXXs-OUDOAZexWCmn_u-frxXROpg4kBt6Yvjj0a0U,998
|
136
136
|
inspect_ai/_view/www/dist/assets/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9MAs,1508
|
137
137
|
inspect_ai/_view/www/dist/assets/index.css,sha256=-b1cCY-cDb5XERXkw9rY3bzFN3NDKnWkh6eQfY4Mnjg,859009
|
138
|
-
inspect_ai/_view/www/dist/assets/index.js,sha256=
|
139
|
-
inspect_ai/_view/www/src/App.mjs,sha256=
|
138
|
+
inspect_ai/_view/www/dist/assets/index.js,sha256=j6GjSY_bUU24fLwTuGqJHmMRafAkT1JJ286nwaion94,2209402
|
139
|
+
inspect_ai/_view/www/src/App.mjs,sha256=TUBm546x96R7GbtdnQp2a26MypULrmjedOWxhOkdoiM,29777
|
140
140
|
inspect_ai/_view/www/src/Register.mjs,sha256=jpIqov7fyyLPW9Ouhc9KOy__o8s-P5h-VF9S1RDsIDU,116
|
141
|
-
inspect_ai/_view/www/src/Types.mjs,sha256=
|
141
|
+
inspect_ai/_view/www/src/Types.mjs,sha256=cdJgBRahz3hH-8XB7WiHeWJVCx8jG5TW1DoO7qm6hcU,734
|
142
142
|
inspect_ai/_view/www/src/constants.mjs,sha256=UIxGbDscs61CcOQLQiW6MsZAU1uupSYNVLGxx2pp14A,1169
|
143
|
-
inspect_ai/_view/www/src/index.js,sha256=
|
144
|
-
inspect_ai/_view/www/src/api/Types.
|
145
|
-
inspect_ai/_view/www/src/api/api-browser.
|
146
|
-
inspect_ai/_view/www/src/api/api-http.
|
147
|
-
inspect_ai/_view/www/src/api/api-shared.
|
148
|
-
inspect_ai/_view/www/src/api/api-vscode.
|
149
|
-
inspect_ai/_view/www/src/api/client-api.
|
150
|
-
inspect_ai/_view/www/src/api/index.
|
151
|
-
inspect_ai/_view/www/src/api/jsonrpc.
|
143
|
+
inspect_ai/_view/www/src/index.js,sha256=h9FXq89qdBEZ91rYXccI62S5kFtttsdanBOGDGhRq0c,2600
|
144
|
+
inspect_ai/_view/www/src/api/Types.ts,sha256=XcS9QKGerJfDLRHd3Nw3CQdZym5tiYd4qpK04zez7OU,2785
|
145
|
+
inspect_ai/_view/www/src/api/api-browser.ts,sha256=jOdbb0r5hVdlg7X1ocCbaXJ1XS__yOENgf6KILpkFoY,3302
|
146
|
+
inspect_ai/_view/www/src/api/api-http.ts,sha256=cxJ3zXuQAKqYbwLFlci2kdDZG8Pid2jhEe4u3Bjqw-U,6317
|
147
|
+
inspect_ai/_view/www/src/api/api-shared.ts,sha256=F0qCU97BN8p4DjsdK62hwoRSlcJUahCY--WyacbMRz0,1524
|
148
|
+
inspect_ai/_view/www/src/api/api-vscode.ts,sha256=Mr5Se6co5isg2caOvypJIoNf3Gvcm8hDsYrHxkYpD-Q,2324
|
149
|
+
inspect_ai/_view/www/src/api/client-api.ts,sha256=pBsV_ZEJMgsQtDuCHF1fqymngRhJABDlICQZlUcibaA,8200
|
150
|
+
inspect_ai/_view/www/src/api/index.ts,sha256=bK8w4iltFURXSLhBkYfhcrYYzUPP12Yj5VCTCEG6-kc,1741
|
151
|
+
inspect_ai/_view/www/src/api/jsonrpc.ts,sha256=XDyp8ruONzjng1vuiSv8EU7eJhST-4K2ox0IBkCmBfc,5662
|
152
152
|
inspect_ai/_view/www/src/appearance/Colors.mjs,sha256=XKcwC7vekXEpTBEtvL3uyG9223vm8DjkPu82B95YSAs,836
|
153
153
|
inspect_ai/_view/www/src/appearance/Fonts.mjs,sha256=2ZtGLUvOYt1H5Typ4b_XoXqrO-60AyzjPUf8IlT6jwc,1919
|
154
154
|
inspect_ai/_view/www/src/appearance/Icons.mjs,sha256=qJ4in2HdAv34eyN2UrLM1HRNkEtXSLI_td3KjQKwUNQ,5862
|
@@ -162,7 +162,7 @@ inspect_ai/_view/www/src/components/Card.mjs,sha256=sIGe9Th6Jyb8hO7DWs4r_NbVTGcB
|
|
162
162
|
inspect_ai/_view/www/src/components/ChatView.mjs,sha256=_Erzh15cbYnvJmMR-K_iX0WAhwmjECc0KpuYiT1ftJ0,12681
|
163
163
|
inspect_ai/_view/www/src/components/CopyButton.mjs,sha256=hRAF_GyZa84EMKm0-WBBncPe7XGFbsNE3zG1jKdkcYg,1423
|
164
164
|
inspect_ai/_view/www/src/components/Dialog.mjs,sha256=C7vSKHelCnP-BMkX4nrrF5woas6WEtMy8rQcbtme-xk,1431
|
165
|
-
inspect_ai/_view/www/src/components/DownloadButton.mjs,sha256=
|
165
|
+
inspect_ai/_view/www/src/components/DownloadButton.mjs,sha256=fy8uNL0lDqurFDVWvZc1QwLJ0HuaHgwE5L6J1VH_tOQ,433
|
166
166
|
inspect_ai/_view/www/src/components/DownloadPanel.mjs,sha256=WPalQP4dlPiJ-h0NMKsdDuyyFWynGqHbNWutSzbzMYc,648
|
167
167
|
inspect_ai/_view/www/src/components/EmptyPanel.mjs,sha256=gqkSjsLNYNOBrBTYueAq8YcV3SshwkJrWimFMVsQ3qU,544
|
168
168
|
inspect_ai/_view/www/src/components/ErrorPanel.mjs,sha256=R5etulJpH4lS7OMB6txNvsEue2UT5k2Us5Z0IfViJr0,1814
|
@@ -190,28 +190,28 @@ inspect_ai/_view/www/src/components/RenderedContent/ChatMessageRenderer.mjs,sha2
|
|
190
190
|
inspect_ai/_view/www/src/components/RenderedContent/RenderedContent.mjs,sha256=uW9TnwaX_uAZYWQ_CnL48VIzNEEdyS9Wjl67Y5nrGww,6358
|
191
191
|
inspect_ai/_view/www/src/components/RenderedContent/Types.mjs,sha256=eIKU8tDBpx6s2-pxUXdY_dG4zRYdaeuhnJoPMtCz9Ic,708
|
192
192
|
inspect_ai/_view/www/src/json/JsonTab.mjs,sha256=slIAwWV-yZeBVbzqpdTZb-wJLcDj9P98ZndAq0km-8I,1583
|
193
|
-
inspect_ai/_view/www/src/log/remoteLogFile.
|
193
|
+
inspect_ai/_view/www/src/log/remoteLogFile.ts,sha256=NqnR6c3x-TBvVrtXXZbOOZ4FNGBcwk7kmbjStVx_M78,5993
|
194
194
|
inspect_ai/_view/www/src/log-reader/Log-Reader.mjs,sha256=ScTs8e5tOlc4jLoBqPQOD6EB1OiFjYqF7bUPFWhT0BE,591
|
195
195
|
inspect_ai/_view/www/src/log-reader/Native-Log-Reader.mjs,sha256=IkFp9lsGvB3wryAqmYZz4H3D8heiO2w_Zh1I3NgiOG4,234
|
196
196
|
inspect_ai/_view/www/src/log-reader/Open-AI-Log-Reader.mjs,sha256=3Rt5AZV07ffFHZslCoo5E_TMOh4yuB01CRHDrptPBDM,8116
|
197
|
-
inspect_ai/_view/www/src/navbar/Navbar.mjs,sha256=
|
198
|
-
inspect_ai/_view/www/src/navbar/SecondaryBar.mjs,sha256=
|
197
|
+
inspect_ai/_view/www/src/navbar/Navbar.mjs,sha256=7hBfvk0WWza_YfLXo-ri6V8j4TBimN2LKfQ5tcObRcM,11493
|
198
|
+
inspect_ai/_view/www/src/navbar/SecondaryBar.mjs,sha256=2BjQQfofJSFud3VjkEnkTvt7CmjMJ-kLlgTL-d9qrxg,4796
|
199
199
|
inspect_ai/_view/www/src/plan/PlanCard.mjs,sha256=2JGBPFiGTJmf9DR9IuwgcrACO_3mPFpap2mwokCzwTk,10326
|
200
200
|
inspect_ai/_view/www/src/samples/SampleDialog.mjs,sha256=qj7pau1RBeTWIwhSYNuaervfZcJ6pSBV31GkVRqoZ6I,3848
|
201
201
|
inspect_ai/_view/www/src/samples/SampleDisplay.mjs,sha256=edzRZc_gehkLB2ym6LEjK7qTQpvXLD7Zs1Lw35LTFh4,16181
|
202
202
|
inspect_ai/_view/www/src/samples/SampleError.mjs,sha256=48in4mqQpe2KxQK9__3rBfK5mEKIqPrIscWeCW1r_Hk,2674
|
203
203
|
inspect_ai/_view/www/src/samples/SampleLimit.mjs,sha256=_IT5kKng8L3A26fHjG0vANAn2y73Nb6j5A_90osQz2E,627
|
204
|
-
inspect_ai/_view/www/src/samples/SampleList.mjs,sha256=
|
204
|
+
inspect_ai/_view/www/src/samples/SampleList.mjs,sha256=Bxad2aZlK_SDsaYFhNk6WVvS-g41_SPm60X8BplvOxc,12308
|
205
205
|
inspect_ai/_view/www/src/samples/SampleScoreView.mjs,sha256=d0s9FD55hY6kd6btFeS3HXCcbkI08AQ-nms0dV3sdn4,4739
|
206
|
-
inspect_ai/_view/www/src/samples/SampleScores.mjs,sha256=
|
206
|
+
inspect_ai/_view/www/src/samples/SampleScores.mjs,sha256=nqYVsJYjEn7xyxzIeHZSJ67QiJaaCol2QecS22PyCwo,1012
|
207
207
|
inspect_ai/_view/www/src/samples/SampleTranscript.mjs,sha256=u9LR4wNzd80fSoY5KvOPGPqj9XgfmI6ZZYosqBj5LNM,744
|
208
|
-
inspect_ai/_view/www/src/samples/SamplesDescriptor.mjs,sha256=
|
209
|
-
inspect_ai/_view/www/src/samples/SamplesTab.mjs,sha256=
|
208
|
+
inspect_ai/_view/www/src/samples/SamplesDescriptor.mjs,sha256=bsE-7Uncz8xcGpRActAYkmNeb7ZMKVYkEwP8Ho5xyR0,24233
|
209
|
+
inspect_ai/_view/www/src/samples/SamplesTab.mjs,sha256=iIc8t0ikrUWff29Upi_s1ODpoiDlCyeXSvTVWw-aX4Y,13358
|
210
210
|
inspect_ai/_view/www/src/samples/SamplesTools.mjs,sha256=MExPCzJ5_C55XyZbCwXpg2EOtlwUMOp_pRk2ro5Vvuo,1217
|
211
211
|
inspect_ai/_view/www/src/samples/tools/EpochFilter.mjs,sha256=v63T95Yu4X1rXcaPGLGSSDtRjSLxhvOSwBK_lsEVod0,1020
|
212
212
|
inspect_ai/_view/www/src/samples/tools/SampleFilter.mjs,sha256=sxBN2Gpa-RUcACuv_7bFhBuhynO1zAr4D8juUqd_-Bw,25796
|
213
213
|
inspect_ai/_view/www/src/samples/tools/SelectScorer.mjs,sha256=_rF0x4XmLFJR5AMxOnZPu4YJKu9vXu8yM-EMfseV2iU,3800
|
214
|
-
inspect_ai/_view/www/src/samples/tools/SortFilter.mjs,sha256=
|
214
|
+
inspect_ai/_view/www/src/samples/tools/SortFilter.mjs,sha256=zdIOP9gsXLRZLza0MFAid-jHiTHUg9NkP8z4_kaMf5Q,4109
|
215
215
|
inspect_ai/_view/www/src/samples/tools/filters.mjs,sha256=eiYktW4wTINmIsSiGAEwQeL0hLH43t2pPrKXnWP2zFI,9315
|
216
216
|
inspect_ai/_view/www/src/samples/transcript/ApprovalEventView.mjs,sha256=QoR2CJsEArCtaWoqDM2aA3NFxXUxIuVGZGOI1r1XP-4,1900
|
217
217
|
inspect_ai/_view/www/src/samples/transcript/ErrorEventView.mjs,sha256=CJQofDjog2M_El5mI3wRnMWkzUZY7Ud5D7UA8Jq9jK4,1616
|
@@ -244,19 +244,19 @@ inspect_ai/_view/www/src/utils/Base64.mjs,sha256=Mz_EnFvfZhXXdlPpZ_3GmdUzpiYt86_
|
|
244
244
|
inspect_ai/_view/www/src/utils/Format.mjs,sha256=y7dbnBhtnfDle3_oSrA9lLC50Zupm7ccZbC0WSmf0uQ,7941
|
245
245
|
inspect_ai/_view/www/src/utils/Git.mjs,sha256=s6GKZC4YtCMeOKf9ZK3Tb4XEZwh39umUkxqIQjP53Dw,423
|
246
246
|
inspect_ai/_view/www/src/utils/Html.mjs,sha256=Aldt42mtrWQEv0zQYB6-yxatp-Ljq5emFyxQOU1od6I,719
|
247
|
-
inspect_ai/_view/www/src/utils/Json.mjs,sha256=vJo7LvS1Ry3EvdVF5agJZHUpYPxrOvKlmWbC4gzQG2o,43446
|
248
247
|
inspect_ai/_view/www/src/utils/Path.mjs,sha256=PmyBGqhiSqlg8K27AiTTckLmrFgnMzUp-hf4OWWhbgk,987
|
249
248
|
inspect_ai/_view/www/src/utils/Print.mjs,sha256=aAEDaAWyjRIwRrPqKZ-VCxVyY0b8k0n35-b6y6-cbb8,2567
|
250
249
|
inspect_ai/_view/www/src/utils/Type.mjs,sha256=fdnVf1_Gn4CRjH59EFB2z-q-4g0TEYiaqIJzxNon3-4,503
|
251
250
|
inspect_ai/_view/www/src/utils/attachments.mjs,sha256=fK_8J1kp91E2XqXCNv-AfLF8E7bXZuPB1k_rgeFuTQg,1054
|
252
251
|
inspect_ai/_view/www/src/utils/debugging.mjs,sha256=7iGls4skx33-6hd7-c5JQ6t-cr6KYCNZEY45KsxMLxQ,582
|
253
252
|
inspect_ai/_view/www/src/utils/http.mjs,sha256=gJ4yGwLqwJgdVLKZGwallGe2wL_M0yfCBCvEZO9qCAU,743
|
253
|
+
inspect_ai/_view/www/src/utils/json-worker.ts,sha256=LIVuPff2JrGkkjwrdlfNsSZUNpJTtEre6jGlJSwoztg,43454
|
254
254
|
inspect_ai/_view/www/src/utils/queue.mjs,sha256=NcUWx0G4xX8Nk6pCwtxz3ZxmjUPI8AllBF05c2hnst4,1764
|
255
255
|
inspect_ai/_view/www/src/utils/remoteZipFile.mjs,sha256=1gyKV3reGqtm5C8iiOVgLplC78q2v5xNdKecFHDn88E,10234
|
256
256
|
inspect_ai/_view/www/src/utils/sync.mjs,sha256=6ugfAv0puMfSiUHVtZhl7rCkaQC2N8OdI8ylu7YRoew,3361
|
257
|
-
inspect_ai/_view/www/src/utils/vscode.
|
257
|
+
inspect_ai/_view/www/src/utils/vscode.ts,sha256=LeVIRviT8YLdtEhfgERnL8_4urv-MB_U16X5JaLU8Rs,882
|
258
258
|
inspect_ai/_view/www/src/workspace/TaskErrorPanel.mjs,sha256=h0vuDsbpX5FDQ3_Zkfi2GdBGhhRwe9kyWnrJQAEHeXw,702
|
259
|
-
inspect_ai/_view/www/src/workspace/WorkSpace.mjs,sha256=
|
259
|
+
inspect_ai/_view/www/src/workspace/WorkSpace.mjs,sha256=k8nrKqj2gRXC1Gb5BUhRvwD6BW60GGEOicKCu5C1GiY,16367
|
260
260
|
inspect_ai/approval/__init__.py,sha256=Bqq4GFljOqKaIUkuCvhlFv89TfJpvbuO_R0jVyjb8VI,379
|
261
261
|
inspect_ai/approval/_apply.py,sha256=_RLfWbQgfVxjZFZdcwqyXCwhhbJaKdhXa-bFJpdrx1Q,2238
|
262
262
|
inspect_ai/approval/_approval.py,sha256=tqkAqLqQ_6IFoX0DHThP7RlpycN9600ZkgbV8QZ77UM,805
|
@@ -268,7 +268,7 @@ inspect_ai/approval/_registry.py,sha256=z6py9adryOGMGfnjr-m-HzNGXKXR9RzUNRmzh8Ny
|
|
268
268
|
inspect_ai/approval/_human/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
269
269
|
inspect_ai/approval/_human/approver.py,sha256=EQ7-HZSFb0DzZvR1vPirJRILFUkDOIL5y1ckEpIAd1M,1052
|
270
270
|
inspect_ai/approval/_human/console.py,sha256=p45DfEU1IAPPKvn3QepBk_IDJwEfSH_03OrMYBUkGx8,2041
|
271
|
-
inspect_ai/approval/_human/manager.py,sha256=
|
271
|
+
inspect_ai/approval/_human/manager.py,sha256=i7N1oeptjF8uDGBuxKklgyAwrH40FaPm94xAHDDUdQM,3390
|
272
272
|
inspect_ai/approval/_human/panel.py,sha256=Sl4tfMIX9U7lT7ZmzrTn6djVy1mGelb8cYMwKgsDJHA,7667
|
273
273
|
inspect_ai/approval/_human/util.py,sha256=DPxpA9_pzeoQyHpGtRE3hx8sGV7MyrlElCBvsh1FNgA,1996
|
274
274
|
inspect_ai/dataset/__init__.py,sha256=4uTSHpN_ccdtbZulUMDetSSP-dXRkFGYsa2FzA5mLEw,534
|
@@ -303,51 +303,53 @@ inspect_ai/log/_recorders/json.py,sha256=l8I1YAsjnD0fuOYV_KVIWciOCBO6FYgVVkour78
|
|
303
303
|
inspect_ai/log/_recorders/recorder.py,sha256=yvW_D99QxUQmnF5EiGsWIVetBXdssMUcsq5us9oRzx4,1551
|
304
304
|
inspect_ai/model/__init__.py,sha256=gYBnBjfEEG_GQhu_lhwQ2tW9U4nXLW0GtRJNGfwYy3k,2121
|
305
305
|
inspect_ai/model/_cache.py,sha256=IQXhMas58Pjdma894GHGTtHYpmnf_Ojz_eE0kHaQVPs,13567
|
306
|
-
inspect_ai/model/_call_tools.py,sha256=
|
307
|
-
inspect_ai/model/_chat_message.py,sha256=
|
308
|
-
inspect_ai/model/_conversation.py,sha256=
|
309
|
-
inspect_ai/model/_generate_config.py,sha256=
|
306
|
+
inspect_ai/model/_call_tools.py,sha256=Vy3uXVpHY9b0gQrXu3KGmvEOWXntSCxbpJ0elTAQ0So,18128
|
307
|
+
inspect_ai/model/_chat_message.py,sha256=rJ1_pBn0sQdsr4R_DQUrg2PvRzi4VaYc2N_ttikuFy0,4454
|
308
|
+
inspect_ai/model/_conversation.py,sha256=SFumVE67sq-mgSfqaZw2xwE8kow5NxF6FU8VbXsvc8k,1988
|
309
|
+
inspect_ai/model/_generate_config.py,sha256=WjlFH6WtfyIpF6TMcSFmIUxyyB0D4quZLIqMd82oEW8,8757
|
310
310
|
inspect_ai/model/_image.py,sha256=kpO2Bn_-c-dK80HuPOPH1eSNmcoc39kofwf4yTTiTFE,477
|
311
|
-
inspect_ai/model/_model.py,sha256=
|
311
|
+
inspect_ai/model/_model.py,sha256=9rLk3F33By0Gc8d7_LdS9r4sTth11QxC5tGu3m_4suo,37020
|
312
312
|
inspect_ai/model/_model_call.py,sha256=r6ObHZwm7jy1qX2qxvAP6iPV3BhdGThL-VH-QEawQhA,2017
|
313
|
-
inspect_ai/model/_model_output.py,sha256=
|
313
|
+
inspect_ai/model/_model_output.py,sha256=X6dEH3L4XPs5H8cWQeVF8tlkDMNRqP3StJlPA_z140E,7029
|
314
|
+
inspect_ai/model/_openai.py,sha256=XhYu_Rdc5jLGkrgdIkbniNWlQVBx9iYj2DdDTK1U12o,12871
|
314
315
|
inspect_ai/model/_registry.py,sha256=Cr2y32EqLnOqLbSWoXHVK4ivTTzCUhJuACxoTyPt8kY,2032
|
315
316
|
inspect_ai/model/_render.py,sha256=rWypNUjgrH4NGp0r-ESAze9gZz7lYNjheEP438vRYZE,922
|
316
|
-
inspect_ai/model/_providers/anthropic.py,sha256=
|
317
|
-
inspect_ai/model/_providers/azureai.py,sha256=
|
317
|
+
inspect_ai/model/_providers/anthropic.py,sha256=4a07C0PGxWyyHGZuKol6EXULsDC7lphqyJgSdaOJ1gY,24674
|
318
|
+
inspect_ai/model/_providers/azureai.py,sha256=moIC4-um_Qs3iXbr4DlP6LUL924aF-s5YyQqF0V5ye4,14037
|
318
319
|
inspect_ai/model/_providers/bedrock.py,sha256=BiSEQYlGLKqaadGUJxSQuule3JPLZbAIjfhJ36DYQ8k,23357
|
319
320
|
inspect_ai/model/_providers/cloudflare.py,sha256=h6ubjf0kxyMM7Aj2tm68tWa-2R7RAXNGp1O6KMvi0Gw,4143
|
321
|
+
inspect_ai/model/_providers/goodfire.py,sha256=Pu11d4mATDq5B750Q6Z4ZS8EC_nniFtleCQTTd-Pxm8,8690
|
320
322
|
inspect_ai/model/_providers/google.py,sha256=j0P7DmtLtaw8lunpQla7MlG8hPWLyzrRg-iEG6vrEkI,23226
|
321
323
|
inspect_ai/model/_providers/grok.py,sha256=dS88ueXiD-kHAFr0jCoTpTGLGa2VsUlB_TFP8L_2lBM,995
|
322
|
-
inspect_ai/model/_providers/groq.py,sha256=
|
323
|
-
inspect_ai/model/_providers/hf.py,sha256=
|
324
|
+
inspect_ai/model/_providers/groq.py,sha256=0--gws0z5wM4q9bJa-8WUI8cmDXvhDz8VqXI-Bqdblg,9812
|
325
|
+
inspect_ai/model/_providers/hf.py,sha256=bgUtYZAitHxtoVyt0I0Wnz-rf6jRAqIjQ82QjZBOJAM,17468
|
324
326
|
inspect_ai/model/_providers/llama_cpp_python.py,sha256=i2I56Damgb8VDhMuPxPca24fVhlajDHzxCTYFnT41uI,702
|
325
|
-
inspect_ai/model/_providers/mistral.py,sha256=
|
327
|
+
inspect_ai/model/_providers/mistral.py,sha256=xTJSdb1-_hwTr3qesSbS5hyEqWrDzSQwGY__kHaQ1tc,15213
|
326
328
|
inspect_ai/model/_providers/mockllm.py,sha256=gL9f-f5TOdE4a0GVENr3cOIIp2kv8zVXWPZ608rouGk,2440
|
327
329
|
inspect_ai/model/_providers/ollama.py,sha256=mBPSxaEkiH_RnlHKqOyFBlXObQhc2dfjL-rCKrea5u8,675
|
328
|
-
inspect_ai/model/_providers/openai.py,sha256=
|
329
|
-
inspect_ai/model/_providers/openai_o1.py,sha256=
|
330
|
-
inspect_ai/model/_providers/providers.py,sha256
|
331
|
-
inspect_ai/model/_providers/together.py,sha256=
|
330
|
+
inspect_ai/model/_providers/openai.py,sha256=WIy-lCr9K8qQCqZdY_FGJyhKrg3hIYeTyo8mgyCh1sk,11338
|
331
|
+
inspect_ai/model/_providers/openai_o1.py,sha256=W790nMo6ujKcqfdyiR-Q2aA3RRT3LwToLU3OM86-xl0,12242
|
332
|
+
inspect_ai/model/_providers/providers.py,sha256=-RG878Bih1wHykhVoEAver2E5GsYmLSYvPcOBKYOwkw,6192
|
333
|
+
inspect_ai/model/_providers/together.py,sha256=0KpFLKbnP_a_AH7VN18eLtlm7kGvJkBIura9drdc7BU,9483
|
332
334
|
inspect_ai/model/_providers/vertex.py,sha256=_dvhtboSfb6uYez421vqmJrcc-SBZAIP6XYNwtHElKM,16391
|
333
335
|
inspect_ai/model/_providers/vllm.py,sha256=cggwgDMEwdF9DKdqGxo-XMMkDte-rQoHIBf6nipZ1Pg,14093
|
334
|
-
inspect_ai/model/_providers/util/__init__.py,sha256=
|
336
|
+
inspect_ai/model/_providers/util/__init__.py,sha256=zWqGXUZLcVBr001JpSe81_3QXnBcS7hdRtIpekIwjZ0,707
|
335
337
|
inspect_ai/model/_providers/util/chatapi.py,sha256=h8GePQ53VgPpn75QQJfoO5IMUMiTq3heMnjKC3vj13c,3659
|
336
|
-
inspect_ai/model/_providers/util/hf_handler.py,sha256=
|
337
|
-
inspect_ai/model/_providers/util/llama31.py,sha256=
|
338
|
-
inspect_ai/model/_providers/util/util.py,sha256=
|
338
|
+
inspect_ai/model/_providers/util/hf_handler.py,sha256=zUGLTlLSSRqvYv2odIbgEEkd4Fm_5LMxVFDWXm3D7Qk,7622
|
339
|
+
inspect_ai/model/_providers/util/llama31.py,sha256=m1-oczQ_ROQX38tfoLCHVXk1lqNqFp8gNWVF7zmkTi4,7609
|
340
|
+
inspect_ai/model/_providers/util/util.py,sha256=kDMaxRPultjakDRiCPFer5vHyhb2fVAIPaq2H97pXJY,1177
|
339
341
|
inspect_ai/scorer/__init__.py,sha256=NuiJshKtfYaZICwz28tWfNaGqDDlbnsaSwYVK42I5QM,1744
|
340
342
|
inspect_ai/scorer/_answer.py,sha256=WlJrPWr0Ha5p4l4x7-CQNizM1MvSWFPlXz5Qi5LFIbY,2040
|
341
343
|
inspect_ai/scorer/_choice.py,sha256=psQw-KLlmxPqMTn0HR3We6HjnFawk07idssppkEPNXg,2784
|
342
344
|
inspect_ai/scorer/_classification.py,sha256=RXCYss0NglzlvMfUq1Ui0qUgZhNlAcR9r9Y7nPkmL3c,4755
|
343
345
|
inspect_ai/scorer/_common.py,sha256=yx4jXhGd_a_e8SYF0zYyJhn42j1yYG2Ugylr96UreFA,3130
|
344
346
|
inspect_ai/scorer/_match.py,sha256=I1WrdDMSRgp7Kj7b-qZWcIhTOwihrL9I-_qlxpTGJc8,1641
|
345
|
-
inspect_ai/scorer/_metric.py,sha256=
|
347
|
+
inspect_ai/scorer/_metric.py,sha256=X_NUKrwT4fI95CvJIb5RzjgDLNTjxmUrONo3247YVc0,8452
|
346
348
|
inspect_ai/scorer/_model.py,sha256=337Zn-JI44ekClLGGZE0erP9iO3y5X55XOZQ6Z8jkjw,11576
|
347
349
|
inspect_ai/scorer/_multi.py,sha256=Co1grMZnys1KYrilDH2ZCuD5qOYJ1Nz5uDzU0bjxKlA,876
|
348
350
|
inspect_ai/scorer/_pattern.py,sha256=mZs18Y7KRiAmWsB5rMFEEyt7GTGF8wV-2RPipg-Gmbc,3392
|
349
351
|
inspect_ai/scorer/_score.py,sha256=zIQNMjfPta2a7ujxIrT3GAn5f1ZOz0IlDrDF2Qjs_x0,1092
|
350
|
-
inspect_ai/scorer/_scorer.py,sha256=
|
352
|
+
inspect_ai/scorer/_scorer.py,sha256=xuSVAAsON8wIvI4kbBG7GLpoMrfYJe2KdilGBOTbdc0,4820
|
351
353
|
inspect_ai/scorer/_target.py,sha256=gfldBi0pkWTK1K-pUgKrr76YRzdFqZEV4nVa8uG1UU0,788
|
352
354
|
inspect_ai/scorer/_metrics/__init__.py,sha256=Y-s0v9D5wkkTiNJD2y12HnsLTfDpiBW-cQ-YV0pfV14,209
|
353
355
|
inspect_ai/scorer/_metrics/accuracy.py,sha256=U8H0iwA3qzqxanaRfYhhMmOV915VR6fbYTHNHyYES6g,943
|
@@ -357,19 +359,23 @@ inspect_ai/scorer/_reducer/__init__.py,sha256=ntoSXbbBia6gN3Uk3tQFQ8lSt8IBSRvwM5
|
|
357
359
|
inspect_ai/scorer/_reducer/reducer.py,sha256=g8F7sTm_FmPcLdavOGv0YuvqZ5_nz2irmQVq37h2Y5A,11494
|
358
360
|
inspect_ai/scorer/_reducer/registry.py,sha256=J2tvuuxf4jBC09_SCBZg99Qb2qQUWG8STEsw7ASWpXQ,5388
|
359
361
|
inspect_ai/scorer/_reducer/types.py,sha256=uimvzIBRK7x1Dof77gsHYe9PU3hekB1opm9DTAa4sL4,340
|
360
|
-
inspect_ai/solver/__init__.py,sha256=
|
361
|
-
inspect_ai/solver/_basic_agent.py,sha256=
|
362
|
+
inspect_ai/solver/__init__.py,sha256=I8lmfnohTUYyW3aR7sCQhkOBh9R75a0-QrYkR3hG76E,3433
|
363
|
+
inspect_ai/solver/_basic_agent.py,sha256=DaPMu_2SuoBamYwd54soxGaW2lcK21Siuf0qYW9Ps9w,10134
|
362
364
|
inspect_ai/solver/_chain.py,sha256=F-2ZHE2KOlDAIgH1_Q23whUMH5TjYGvCHhcOgbRxe7I,2234
|
363
365
|
inspect_ai/solver/_critique.py,sha256=ddO8J7VqSEsT6kofawpn3PrcUpLjLUMFmJi0hocDZpI,3504
|
364
366
|
inspect_ai/solver/_fork.py,sha256=Ge1PwpCHjeZhm2CLAWKss2uFuQd9BGzVinLOW6UOnfE,2880
|
367
|
+
inspect_ai/solver/_limit.py,sha256=zaZseJgjbJaBnGdXQHQ5MpU4tzgUyD8FzLvJMGDk3jA,1122
|
365
368
|
inspect_ai/solver/_multiple_choice.py,sha256=tSLrwqAHuvX_eccM6OXiRmlx5bx_3g1LcB8GDWWV9C0,11024
|
366
369
|
inspect_ai/solver/_plan.py,sha256=Dp1DDTtGe2iTo8CYWKqCOdfBFfTK_0wi2JzIr6qrikI,7042
|
367
370
|
inspect_ai/solver/_prompt.py,sha256=PwGtLQ-dnCzxN_74H1NDT7LAhUuuiw2-c6ZSyXgBFgQ,3953
|
368
|
-
inspect_ai/solver/_solver.py,sha256=
|
369
|
-
inspect_ai/solver/_task_state.py,sha256=
|
371
|
+
inspect_ai/solver/_solver.py,sha256=Q-FrkfD97_TufEzuQxzr_LgziCdQipIuy778NWq7vVM,9008
|
372
|
+
inspect_ai/solver/_task_state.py,sha256=Timv9_961yPNjh07BBUL0QeHeLLKx6b-QBsN1ocnEvY,16237
|
370
373
|
inspect_ai/solver/_transcript.py,sha256=gkH9CC5gYbz7ZzrFD0TkjtKYjWxQP5EthJOkq8NXDOc,1049
|
371
374
|
inspect_ai/solver/_use_tools.py,sha256=W7muO8r9eThXydm1GjFF-f6gip9AhzhgAG2GHSE5EpM,2011
|
372
375
|
inspect_ai/solver/_util.py,sha256=pthrf-CzC6FnQYSUFLXTYM4wFEJptZrh5POTmV-Jtow,446
|
376
|
+
inspect_ai/solver/_bridge/__init__.py,sha256=coz183P0weDurMfJw8QIpgYZNCIV681MfSOB7splRj0,49
|
377
|
+
inspect_ai/solver/_bridge/bridge.py,sha256=VXxZkcQY3RCfKXYCsjWPBTi_EUbI09OhYWQCJcbAZCU,3464
|
378
|
+
inspect_ai/solver/_bridge/patch.py,sha256=I2yR1omnaH_cdk5vqx-TavOFXPUbOY57fZUg6KZFHPs,5939
|
373
379
|
inspect_ai/solver/_human_agent/agent.py,sha256=GviDyGsOuJ6113yIoky7qhxV7lODzAq1oylIRooWkRk,3240
|
374
380
|
inspect_ai/solver/_human_agent/install.py,sha256=_tp6MpJX6g3dBWp2l2shLfgSiVfAa38F_oRdmBZSPMg,6789
|
375
381
|
inspect_ai/solver/_human_agent/panel.py,sha256=e4PG3Br0FMasqpsMkHEpuNBkO9tEVtDMI5ufSwuIcBw,8066
|
@@ -397,7 +403,7 @@ inspect_ai/tool/_tool_with.py,sha256=YBHjhT9PuM2QyUxD_BzhgqFPFfUPoRrTIpXMBXMXlFY
|
|
397
403
|
inspect_ai/tool/_tools/_execute.py,sha256=DkFlvUTvI595H1zH5IKArhbyBo8YZWqq9tvoUMdvlaw,2823
|
398
404
|
inspect_ai/tool/_tools/_web_search.py,sha256=YqZ3E65ssdq1X2NSH9Mqt5INXdPVQOdKa3PbKi7XjAY,7828
|
399
405
|
inspect_ai/tool/_tools/_web_browser/__init__.py,sha256=dnnzy96pcvMvxD1OGg4hG-doL7Ru7WH0i25Sb9VIXwE,65
|
400
|
-
inspect_ai/tool/_tools/_web_browser/_web_browser.py,sha256=
|
406
|
+
inspect_ai/tool/_tools/_web_browser/_web_browser.py,sha256=Bzb5RtxlQuxGgbkhxyaUTaj6VdNClgePBl5IuX2JJhY,15584
|
401
407
|
inspect_ai/tool/_tools/_web_browser/_resources/Dockerfile,sha256=Sh1Ht5oBuxZC_8hLzw877CIvM9me_8Q0MxMemR5E_js,431
|
402
408
|
inspect_ai/tool/_tools/_web_browser/_resources/README.md,sha256=RAMe6uFUYepkPSqpdCuag0nqASuFEONDI7jOHagYfuI,2607
|
403
409
|
inspect_ai/tool/_tools/_web_browser/_resources/accessibility_node.py,sha256=PuOOeF5rDjN9tz-kRQ_UZUXj7MzrjwuFEdhVIYcCcQw,9628
|
@@ -418,16 +424,16 @@ inspect_ai/tool/beta/_computer/__init__.py,sha256=fq4BSM4aDhtEtE4279xm47NiO6vyiZ
|
|
418
424
|
inspect_ai/tool/beta/_computer/_common.py,sha256=6XK6MBu2ZiRCao_eMlZdjXEvTmbeKQRN0K-8MtBPsk4,4059
|
419
425
|
inspect_ai/tool/beta/_computer/_computer.py,sha256=2R-3GLoSvQn8b0rVPur3jMzaRK4nS6i_sDwzicj5XJ8,7433
|
420
426
|
inspect_ai/tool/beta/_computer/_computer_split.py,sha256=H3DVCJqpHp_2ra85W_z9s5r-oHTVWwctuEq5fDdy2T4,5588
|
421
|
-
inspect_ai/tool/beta/_computer/_resources/Dockerfile,sha256=
|
427
|
+
inspect_ai/tool/beta/_computer/_resources/Dockerfile,sha256=aLdS_UK2-bXiDQcfhGjVytPUQR1lb_WAQN8x4Ssa7_I,3498
|
422
428
|
inspect_ai/tool/beta/_computer/_resources/README.md,sha256=5JDNaGJ-Ebq6Io57ANFIqgjPoh11aGDSrrgrhyfiqxU,1657
|
423
429
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/entrypoint.sh,sha256=IR8sE-b22YO7lwzdDiyjhLTJWIf0X__wA8WE98dwkwM,394
|
424
430
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/novnc_startup.sh,sha256=PAbMgSvprnLvbj8A8a59o_yDfm-jiCXxBxsPb004Bf8,383
|
425
|
-
inspect_ai/tool/beta/_computer/_resources/entrypoint/x11vnc_startup.sh,sha256=
|
431
|
+
inspect_ai/tool/beta/_computer/_resources/entrypoint/x11vnc_startup.sh,sha256=JFcW46u2ioDpGLptmUOMaqtt2YvuFhCTB42cyWRmo8c,993
|
426
432
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/xfce_startup.sh,sha256=w_27I4o7usP8SUMzP3lrXeNuISslyy1aywkgpm_2l4Q,209
|
427
433
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/xvfb_startup.sh,sha256=hd2naWFFpm3S0cWZ6Lhlpm6KD3L6-g8Zw2dgxchXMUg,1118
|
434
|
+
inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml,sha256=jNgaNqBCngQlykTlLhmmdc_LLOrH2AMk7pUpLkbCjMY,312
|
428
435
|
inspect_ai/tool/beta/_computer/_resources/image_home_dir/Desktop/Firefox Web Browser.desktop,sha256=Odm77RSEiTlMx7cY8odUCO2a8fvIUwHcpEUanpHzbL0,181
|
429
436
|
inspect_ai/tool/beta/_computer/_resources/image_home_dir/Desktop/Visual Studio Code.desktop,sha256=jYYu8pcdIhFCC_3cEgO-0z0A6eQO2WQkIVViebSBbpA,184
|
430
|
-
inspect_ai/tool/beta/_computer/_resources/image_home_dir/Desktop/XPaint.desktop,sha256=T093gZ3B2aXNd0yo6J31rJ0HeE3ROXPCbgAWxZqtjDA,158
|
431
437
|
inspect_ai/tool/beta/_computer/_resources/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
432
438
|
inspect_ai/tool/beta/_computer/_resources/tool/_logger.py,sha256=owkNYe9lyShTLXoMqhK4Qtzacnt5FvSxN8Wqf2MO5XM,652
|
433
439
|
inspect_ai/tool/beta/_computer/_resources/tool/_run.py,sha256=xhXdnBK1di9muaO44CEirL9hpGy3NmKbjfMpyeVmn8Y,1595
|
@@ -435,12 +441,11 @@ inspect_ai/tool/beta/_computer/_resources/tool/_tool_result.py,sha256=cd6JNFhwyI
|
|
435
441
|
inspect_ai/tool/beta/_computer/_resources/tool/_x11_client.py,sha256=rLduqd6JduoM9nMQk2-q7lpK4TCasz2F6_6mexquInI,9566
|
436
442
|
inspect_ai/tool/beta/_computer/_resources/tool/computer_tool.py,sha256=0ehJuuUO6AlWUZKt3TyUbWQuwyBmkpsBbHxizZI_0GQ,2574
|
437
443
|
inspect_ai/tool/beta/_computer/_resources/tool/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
438
|
-
inspect_ai/util/__init__.py,sha256=
|
444
|
+
inspect_ai/util/__init__.py,sha256=Nbr5h9EDqnUFqj1SSm5hJccHp_sz2YB1SCZgFS0NYDk,1388
|
439
445
|
inspect_ai/util/_concurrency.py,sha256=Olzk259NPeSXIy5LzID_WEVGnaW6p5CBCBrmlZUYufM,2227
|
440
446
|
inspect_ai/util/_console.py,sha256=V1XkIoKcNZo0SgRUOv15zJAWz6-zV6267hC4Oldj8oY,1237
|
441
447
|
inspect_ai/util/_conversation.py,sha256=KzqvKfj1tB14cgARZjYyIVG2EpuE-EZKqLGAPIXv1Xs,784
|
442
|
-
inspect_ai/util/_display.py,sha256=
|
443
|
-
inspect_ai/util/_limit.py,sha256=HMgembPprMvJFeFQy82Gw_BkPX4mqYBP1mGu-aA0n5g,751
|
448
|
+
inspect_ai/util/_display.py,sha256=IUVyzS0PtFo9LeRW_EWvDv7tkGy1rsZGBjqg63uOPOs,1591
|
444
449
|
inspect_ai/util/_panel.py,sha256=bSXXV1LDVMt8DeGWEYTfEm3iMz9I02sX5xpBSVUVRdQ,3072
|
445
450
|
inspect_ai/util/_resource.py,sha256=MMmtTKtt78pDIp9Uc_OxJom_q8mcKozVqt8kosKRJt0,3420
|
446
451
|
inspect_ai/util/_store.py,sha256=QemJe2M-RK6zSFNcd07_92XFjvNtWKgHzBr5eT3KF1I,3786
|
@@ -454,18 +459,18 @@ inspect_ai/util/_sandbox/environment.py,sha256=Qo7ne28L6fn3igo2Gd0H1lz4vP60IdJGS
|
|
454
459
|
inspect_ai/util/_sandbox/limits.py,sha256=K-GjKfSugOq8KP0wW_oF6qFrXsOnMV0C88QUWkjPJ9o,2164
|
455
460
|
inspect_ai/util/_sandbox/local.py,sha256=NkHnR_e7s7RFsBdwfaSR7Yzp6lSUc7Em0Pc9_CFuN4c,3534
|
456
461
|
inspect_ai/util/_sandbox/registry.py,sha256=mQwWwqzaCXF1FZ2fcVujpp3WMA35GWnh1w43SoIJAVM,2145
|
457
|
-
inspect_ai/util/_sandbox/self_check.py,sha256=
|
462
|
+
inspect_ai/util/_sandbox/self_check.py,sha256=ZRb2wMRnyiUBJPJqTfLlUO2_ctxBoJ-4soyERfn583A,15222
|
458
463
|
inspect_ai/util/_sandbox/service.py,sha256=2os7W8NYBDcaBoaHVfZ1YrI9hvldksmiwqkUYrCRCPo,11258
|
459
464
|
inspect_ai/util/_sandbox/docker/cleanup.py,sha256=MK6UlADcWtTDotppeVJga2ibf9Ud-e4V-5ReoNbmhqg,4793
|
460
465
|
inspect_ai/util/_sandbox/docker/compose.py,sha256=4aIWWTaTUY9ZWrfSynkRqrUbKlYWrRYoSDX9WrjdHFQ,11473
|
461
466
|
inspect_ai/util/_sandbox/docker/config.py,sha256=TqKafhbC8yxbWtCm_HLbVFCaozIjDL8t4zM8Rc_zIJk,2787
|
462
467
|
inspect_ai/util/_sandbox/docker/docker.py,sha256=sx4PNv_4PDuKlkeYV6ASaZbo0XT-I_V8OOTu5bDWz08,18411
|
463
468
|
inspect_ai/util/_sandbox/docker/internal.py,sha256=fATyk2pdtjSl-D0VPT4dmkXV-gOc5HrPH0EQDW4IAJY,1446
|
464
|
-
inspect_ai/util/_sandbox/docker/prereqs.py,sha256=
|
469
|
+
inspect_ai/util/_sandbox/docker/prereqs.py,sha256=0j6_OauBBnVlpBleADcZavIAAQZy4WewVjbRn9c0stg,3355
|
465
470
|
inspect_ai/util/_sandbox/docker/util.py,sha256=pSPsRGymrTmTnEUHiHoQSNqeurPP1mL5kB-105O6EWo,2794
|
466
|
-
inspect_ai-0.3.
|
467
|
-
inspect_ai-0.3.
|
468
|
-
inspect_ai-0.3.
|
469
|
-
inspect_ai-0.3.
|
470
|
-
inspect_ai-0.3.
|
471
|
-
inspect_ai-0.3.
|
471
|
+
inspect_ai-0.3.61.dist-info/LICENSE,sha256=aYPffOl9TwBXDQ8g33Jh6AsBhobb3A76qNm7r2HZsps,1079
|
472
|
+
inspect_ai-0.3.61.dist-info/METADATA,sha256=8fUvCJ8CAPh0ANPl4OPuHGBmbhbewMoH6F1AA94SRTA,4528
|
473
|
+
inspect_ai-0.3.61.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
474
|
+
inspect_ai-0.3.61.dist-info/entry_points.txt,sha256=WGGLmzTzDWLzYfiyovSY6oEKuf-gqzSDNOb5V-hk3fM,54
|
475
|
+
inspect_ai-0.3.61.dist-info/top_level.txt,sha256=Tp3za30CHXJEKLk8xLe9qGsW4pBzJpEIOMHOHNCXiVo,11
|
476
|
+
inspect_ai-0.3.61.dist-info/RECORD,,
|