inspect-ai 0.3.64__py3-none-any.whl → 0.3.65__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/_display/core/progress.py +1 -1
- inspect_ai/_display/textual/app.py +8 -4
- inspect_ai/_display/textual/widgets/samples.py +2 -2
- inspect_ai/_view/www/App.css +3 -3
- inspect_ai/_view/www/dist/assets/index.css +27 -27
- inspect_ai/_view/www/dist/assets/index.js +22 -23
- inspect_ai/_view/www/src/metadata/RenderedContent.tsx +6 -13
- inspect_ai/_view/www/src/samples/SampleDisplay.tsx +5 -1
- inspect_ai/_view/www/src/samples/scores/SampleScoreView.module.css +13 -13
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx +1 -1
- inspect_ai/util/_sandbox/docker/config.py +1 -1
- {inspect_ai-0.3.64.dist-info → inspect_ai-0.3.65.dist-info}/METADATA +1 -1
- {inspect_ai-0.3.64.dist-info → inspect_ai-0.3.65.dist-info}/RECORD +17 -17
- {inspect_ai-0.3.64.dist-info → inspect_ai-0.3.65.dist-info}/LICENSE +0 -0
- {inspect_ai-0.3.64.dist-info → inspect_ai-0.3.65.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.64.dist-info → inspect_ai-0.3.65.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.64.dist-info → inspect_ai-0.3.65.dist-info}/top_level.txt +0 -0
@@ -130,7 +130,7 @@ def progress_count(complete: int, total: int, width: int | None = None) -> str:
|
|
130
130
|
total_str = f"{total:,}"
|
131
131
|
complete_str = f"{complete:,}"
|
132
132
|
padding = max(0, len(total_str) - len(complete_str))
|
133
|
-
padded = " " * padding + f"
|
133
|
+
padded = " " * padding + f"{complete_str}/{total_str}"
|
134
134
|
|
135
135
|
# If a width has ben specified, pad up to this width as well
|
136
136
|
if width is not None:
|
@@ -5,9 +5,9 @@ from typing import Any, AsyncIterator, ClassVar, Coroutine, Generic, Iterator, c
|
|
5
5
|
|
6
6
|
import rich
|
7
7
|
from rich.console import Console
|
8
|
-
from rich.text import Text
|
9
8
|
from textual.app import App, ComposeResult
|
10
9
|
from textual.binding import Binding, BindingType
|
10
|
+
from textual.content import Content
|
11
11
|
from textual.css.query import NoMatches
|
12
12
|
from textual.events import Print
|
13
13
|
from textual.widget import Widget
|
@@ -178,6 +178,10 @@ class TaskScreenApp(App[TR]):
|
|
178
178
|
# force repaint
|
179
179
|
self.refresh(repaint=True)
|
180
180
|
|
181
|
+
# enable mouse support (this broke in textual 2.0 when running in VS Code)
|
182
|
+
assert self.app._driver
|
183
|
+
textual_enable_mouse_support(self.app._driver)
|
184
|
+
|
181
185
|
try:
|
182
186
|
yield TextualTaskScreen(self)
|
183
187
|
finally:
|
@@ -304,9 +308,9 @@ class TaskScreenApp(App[TR]):
|
|
304
308
|
|
305
309
|
def set_unread(unread: int | None) -> None:
|
306
310
|
if unread is not None:
|
307
|
-
console_tab.label =
|
311
|
+
console_tab.label = Content.from_rich_text(f"Console ({unread}")
|
308
312
|
else:
|
309
|
-
console_tab.label =
|
313
|
+
console_tab.label = Content.from_rich_text("Console")
|
310
314
|
|
311
315
|
self.watch(console_view, "unread", set_unread)
|
312
316
|
|
@@ -373,7 +377,7 @@ class TaskScreenApp(App[TR]):
|
|
373
377
|
def set_title(self, title: str) -> None:
|
374
378
|
tabs = self.app.query_one(TabbedContent)
|
375
379
|
tab = tabs.get_tab(self.tab_id)
|
376
|
-
tab.label =
|
380
|
+
tab.label = Content.from_rich_text(title)
|
377
381
|
|
378
382
|
def activate(self) -> None:
|
379
383
|
# show the tab
|
@@ -16,7 +16,7 @@ from textual.widgets import (
|
|
16
16
|
OptionList,
|
17
17
|
Static,
|
18
18
|
)
|
19
|
-
from textual.widgets.option_list import Option
|
19
|
+
from textual.widgets.option_list import Option
|
20
20
|
|
21
21
|
from inspect_ai._display.textual.widgets.port_mappings import get_url
|
22
22
|
from inspect_ai._util.format import format_progress_time
|
@@ -142,7 +142,7 @@ class SamplesList(OptionList):
|
|
142
142
|
|
143
143
|
# rebuild the list
|
144
144
|
self.clear_options()
|
145
|
-
options: list[Option
|
145
|
+
options: list[Option] = []
|
146
146
|
for sample in self.samples:
|
147
147
|
table = Table.grid(expand=True)
|
148
148
|
table.add_column(width=20)
|
inspect_ai/_view/www/App.css
CHANGED
@@ -65,15 +65,15 @@ body[class^="vscode-"] .app-main-grid {
|
|
65
65
|
|
66
66
|
/* Inspect Text Styles */
|
67
67
|
.text-style-label {
|
68
|
-
text-transform: uppercase;
|
68
|
+
text-transform: uppercase !important;
|
69
69
|
}
|
70
70
|
|
71
71
|
.text-style-secondary {
|
72
|
-
color: var(--bs-secondary);
|
72
|
+
color: var(--bs-secondary) !important;
|
73
73
|
}
|
74
74
|
|
75
75
|
.text-style-tertiary {
|
76
|
-
color: var(--bs-tertiary-color);
|
76
|
+
color: var(--bs-tertiary-color) !important;
|
77
77
|
}
|
78
78
|
|
79
79
|
/* Inspect Font Size Styles */
|
@@ -14338,15 +14338,15 @@ body[class^="vscode-"] .app-main-grid {
|
|
14338
14338
|
|
14339
14339
|
/* Inspect Text Styles */
|
14340
14340
|
.text-style-label {
|
14341
|
-
text-transform: uppercase;
|
14341
|
+
text-transform: uppercase !important;
|
14342
14342
|
}
|
14343
14343
|
|
14344
14344
|
.text-style-secondary {
|
14345
|
-
color: var(--bs-secondary);
|
14345
|
+
color: var(--bs-secondary) !important;
|
14346
14346
|
}
|
14347
14347
|
|
14348
14348
|
.text-style-tertiary {
|
14349
|
-
color: var(--bs-tertiary-color);
|
14349
|
+
color: var(--bs-tertiary-color) !important;
|
14350
14350
|
}
|
14351
14351
|
|
14352
14352
|
/* Inspect Font Size Styles */
|
@@ -16200,58 +16200,58 @@ ul.jsondiffpatch-textdiff {
|
|
16200
16200
|
grid-template-columns: max-content max-content;
|
16201
16201
|
column-gap: 1em;
|
16202
16202
|
}
|
16203
|
-
.
|
16203
|
+
._container_1jqar_1 {
|
16204
16204
|
margin-top: 0.5em;
|
16205
16205
|
padding-left: 0;
|
16206
16206
|
}
|
16207
16207
|
|
16208
|
-
.
|
16209
|
-
padding-right: 2em;
|
16210
|
-
padding-left: 0;
|
16211
|
-
padding-bottom: 0;
|
16208
|
+
._label_1jqar_6 {
|
16209
|
+
padding-right: 2em !important;
|
16210
|
+
padding-left: 0 !important;
|
16211
|
+
padding-bottom: 0 !important;
|
16212
16212
|
font-weight: 400;
|
16213
|
-
padding-bottom: 0;
|
16213
|
+
padding-bottom: 0 !important;
|
16214
16214
|
}
|
16215
16215
|
|
16216
|
-
.
|
16216
|
+
._wordBreak_1jqar_14 {
|
16217
16217
|
word-break: break-all;
|
16218
16218
|
}
|
16219
16219
|
|
16220
|
-
.
|
16220
|
+
._scoreTable_1jqar_18 {
|
16221
16221
|
width: 100%;
|
16222
16222
|
margin-bottom: 1em;
|
16223
16223
|
}
|
16224
16224
|
|
16225
|
-
.
|
16225
|
+
._bottomBorder_1jqar_23 {
|
16226
16226
|
border-bottom-color: #00000000;
|
16227
16227
|
}
|
16228
16228
|
|
16229
|
-
.
|
16229
|
+
._headerScore_1jqar_27 {
|
16230
16230
|
padding-left: 2em;
|
16231
16231
|
}
|
16232
16232
|
|
16233
|
-
.
|
16234
|
-
padding-right: 2em;
|
16235
|
-
padding-left: 0;
|
16236
|
-
padding-top: 0;
|
16233
|
+
._targetValue_1jqar_31 {
|
16234
|
+
padding-right: 2em !important;
|
16235
|
+
padding-left: 0 !important;
|
16236
|
+
padding-top: 0 !important;
|
16237
16237
|
}
|
16238
16238
|
|
16239
|
-
.
|
16240
|
-
padding-left: 0;
|
16241
|
-
padding-top: 0;
|
16239
|
+
._answerValue_1jqar_37 {
|
16240
|
+
padding-left: 0 !important;
|
16241
|
+
padding-top: 0 !important;
|
16242
16242
|
}
|
16243
16243
|
|
16244
|
-
.
|
16245
|
-
padding-left: 2em;
|
16246
|
-
padding-top: 0;
|
16244
|
+
._scoreValue_1jqar_42 {
|
16245
|
+
padding-left: 2em !important;
|
16246
|
+
padding-top: 0 !important;
|
16247
16247
|
}
|
16248
16248
|
|
16249
|
-
.
|
16250
|
-
padding-left: 0;
|
16249
|
+
._noLeft_1jqar_47 {
|
16250
|
+
padding-left: 0 !important;
|
16251
16251
|
}
|
16252
16252
|
|
16253
|
-
.
|
16254
|
-
margin-top: 0;
|
16253
|
+
._noTop_1jqar_51 {
|
16254
|
+
margin-top: 0 !important;
|
16255
16255
|
}
|
16256
16256
|
._wrapper_b0it4_1 {
|
16257
16257
|
display: grid;
|
@@ -22146,7 +22146,7 @@ var require_assets = __commonJS({
|
|
22146
22146
|
const isArray = Array.isArray(entry2.value);
|
22147
22147
|
if (isArray) {
|
22148
22148
|
const types2 = new Set(
|
22149
|
-
entry2.value.map((e) => {
|
22149
|
+
entry2.value.filter((e) => e !== null).map((e) => {
|
22150
22150
|
return typeof e;
|
22151
22151
|
})
|
22152
22152
|
);
|
@@ -22243,15 +22243,7 @@ var require_assets = __commonJS({
|
|
22243
22243
|
return typeof entry2.value === "object";
|
22244
22244
|
},
|
22245
22245
|
render: (id, entry2) => {
|
22246
|
-
|
22247
|
-
const keys = Object.keys(entry2.value);
|
22248
|
-
if (keys.length > 4) {
|
22249
|
-
summary2.push(...keys.slice(0, 2));
|
22250
|
-
summary2.push("...");
|
22251
|
-
summary2.push(...keys.slice(keys.length - 2));
|
22252
|
-
} else {
|
22253
|
-
summary2.push(...keys);
|
22254
|
-
}
|
22246
|
+
console.log({ entry: entry2 });
|
22255
22247
|
return {
|
22256
22248
|
rendered: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
22257
22249
|
MetaDataView,
|
@@ -49460,17 +49452,17 @@ self.onmessage = function (e) {
|
|
49460
49452
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$G.grid, children: rows });
|
49461
49453
|
}
|
49462
49454
|
};
|
49463
|
-
const container$9 = "
|
49464
|
-
const label$1 = "
|
49465
|
-
const wordBreak = "
|
49466
|
-
const scoreTable = "
|
49467
|
-
const bottomBorder = "
|
49468
|
-
const headerScore = "
|
49469
|
-
const targetValue = "
|
49470
|
-
const answerValue = "
|
49471
|
-
const scoreValue = "
|
49472
|
-
const noLeft$1 = "
|
49473
|
-
const noTop$1 = "
|
49455
|
+
const container$9 = "_container_1jqar_1";
|
49456
|
+
const label$1 = "_label_1jqar_6";
|
49457
|
+
const wordBreak = "_wordBreak_1jqar_14";
|
49458
|
+
const scoreTable = "_scoreTable_1jqar_18";
|
49459
|
+
const bottomBorder = "_bottomBorder_1jqar_23";
|
49460
|
+
const headerScore = "_headerScore_1jqar_27";
|
49461
|
+
const targetValue = "_targetValue_1jqar_31";
|
49462
|
+
const answerValue = "_answerValue_1jqar_37";
|
49463
|
+
const scoreValue = "_scoreValue_1jqar_42";
|
49464
|
+
const noLeft$1 = "_noLeft_1jqar_47";
|
49465
|
+
const noTop$1 = "_noTop_1jqar_51";
|
49474
49466
|
const styles$F = {
|
49475
49467
|
container: container$9,
|
49476
49468
|
label: label$1,
|
@@ -58849,7 +58841,14 @@ ${events}
|
|
58849
58841
|
title: "JSON",
|
58850
58842
|
onSelected: onSelectedTab,
|
58851
58843
|
selected: selectedTab === kSampleJsonTabId,
|
58852
|
-
children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: clsx(styles$A.padded, styles$A.fullWidth), children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
58844
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: clsx(styles$A.padded, styles$A.fullWidth), children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
58845
|
+
JSONPanel,
|
58846
|
+
{
|
58847
|
+
data: sample2,
|
58848
|
+
simple: true,
|
58849
|
+
className: clsx("text-size-small")
|
58850
|
+
}
|
58851
|
+
) })
|
58853
58852
|
}
|
58854
58853
|
) : null
|
58855
58854
|
]
|
@@ -60542,7 +60541,7 @@ ${events}
|
|
60542
60541
|
});
|
60543
60542
|
});
|
60544
60543
|
const metrics = Object.values(scorers)[0];
|
60545
|
-
const showReducer = !!metrics[0].reducer;
|
60544
|
+
const showReducer = metrics && metrics.length > 0 && !!metrics[0].reducer;
|
60546
60545
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$3.simpleMetricsRows, children: metrics.map((metric2, i2) => {
|
60547
60546
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
60548
60547
|
VerticalMetric,
|
@@ -132,9 +132,11 @@ const contentRenderers: Record<string, ContentRenderer> = {
|
|
132
132
|
const isArray = Array.isArray(entry.value);
|
133
133
|
if (isArray) {
|
134
134
|
const types = new Set(
|
135
|
-
entry.value
|
136
|
-
|
137
|
-
|
135
|
+
entry.value
|
136
|
+
.filter((e: unknown) => e !== null)
|
137
|
+
.map((e: unknown) => {
|
138
|
+
return typeof e;
|
139
|
+
}),
|
138
140
|
);
|
139
141
|
return types.size === 1;
|
140
142
|
} else {
|
@@ -235,16 +237,7 @@ const contentRenderers: Record<string, ContentRenderer> = {
|
|
235
237
|
},
|
236
238
|
render: (id, entry) => {
|
237
239
|
// Generate a json preview
|
238
|
-
|
239
|
-
const keys = Object.keys(entry.value);
|
240
|
-
if (keys.length > 4) {
|
241
|
-
summary.push(...keys.slice(0, 2));
|
242
|
-
summary.push("...");
|
243
|
-
summary.push(...keys.slice(keys.length - 2));
|
244
|
-
} else {
|
245
|
-
summary.push(...keys);
|
246
|
-
}
|
247
|
-
|
240
|
+
console.log({ entry });
|
248
241
|
return {
|
249
242
|
rendered: (
|
250
243
|
<MetaDataView
|
@@ -213,7 +213,11 @@ export const SampleDisplay: React.FC<SampleDisplayProps> = ({
|
|
213
213
|
selected={selectedTab === kSampleJsonTabId}
|
214
214
|
>
|
215
215
|
<div className={clsx(styles.padded, styles.fullWidth)}>
|
216
|
-
<JSONPanel
|
216
|
+
<JSONPanel
|
217
|
+
data={sample}
|
218
|
+
simple={true}
|
219
|
+
className={clsx("text-size-small")}
|
220
|
+
/>
|
217
221
|
</div>
|
218
222
|
</TabPanel>
|
219
223
|
) : null}
|
@@ -4,11 +4,11 @@
|
|
4
4
|
}
|
5
5
|
|
6
6
|
.label {
|
7
|
-
padding-right: 2em;
|
8
|
-
padding-left: 0;
|
9
|
-
padding-bottom: 0;
|
7
|
+
padding-right: 2em !important;
|
8
|
+
padding-left: 0 !important;
|
9
|
+
padding-bottom: 0 !important;
|
10
10
|
font-weight: 400;
|
11
|
-
padding-bottom: 0;
|
11
|
+
padding-bottom: 0 !important;
|
12
12
|
}
|
13
13
|
|
14
14
|
.wordBreak {
|
@@ -29,25 +29,25 @@
|
|
29
29
|
}
|
30
30
|
|
31
31
|
.targetValue {
|
32
|
-
padding-right: 2em;
|
33
|
-
padding-left: 0;
|
34
|
-
padding-top: 0;
|
32
|
+
padding-right: 2em !important;
|
33
|
+
padding-left: 0 !important;
|
34
|
+
padding-top: 0 !important;
|
35
35
|
}
|
36
36
|
|
37
37
|
.answerValue {
|
38
|
-
padding-left: 0;
|
39
|
-
padding-top: 0;
|
38
|
+
padding-left: 0 !important;
|
39
|
+
padding-top: 0 !important;
|
40
40
|
}
|
41
41
|
|
42
42
|
.scoreValue {
|
43
|
-
padding-left: 2em;
|
44
|
-
padding-top: 0;
|
43
|
+
padding-left: 2em !important;
|
44
|
+
padding-top: 0 !important;
|
45
45
|
}
|
46
46
|
|
47
47
|
.noLeft {
|
48
|
-
padding-left: 0;
|
48
|
+
padding-left: 0 !important;
|
49
49
|
}
|
50
50
|
|
51
51
|
.noTop {
|
52
|
-
margin-top: 0;
|
52
|
+
margin-top: 0 !important;
|
53
53
|
}
|
@@ -32,7 +32,7 @@ export const ResultsPanel: React.FC<ResultsPanelProps> = ({ results }) => {
|
|
32
32
|
});
|
33
33
|
|
34
34
|
const metrics = Object.values(scorers)[0];
|
35
|
-
const showReducer = !!metrics[0].reducer;
|
35
|
+
const showReducer = metrics && metrics.length > 0 && !!metrics[0].reducer;
|
36
36
|
return (
|
37
37
|
<div className={styles.simpleMetricsRows}>
|
38
38
|
{metrics.map((metric, i) => {
|
@@ -43,7 +43,7 @@ def find_compose_file(parent: str = "") -> str | None:
|
|
43
43
|
|
44
44
|
def is_dockerfile(file: str) -> bool:
|
45
45
|
path = Path(file)
|
46
|
-
return path.
|
46
|
+
return path.stem == DOCKERFILE or path.suffix == f".{DOCKERFILE}"
|
47
47
|
|
48
48
|
|
49
49
|
def has_dockerfile(parent: str = "") -> bool:
|
@@ -20,7 +20,7 @@ inspect_ai/_display/core/display.py,sha256=zgpNSU39pITyM_Xa41FsGIY5a4JtZbv7bDy7h
|
|
20
20
|
inspect_ai/_display/core/footer.py,sha256=wMe4P-4Bhx4WV01dUW12o9-KBAoD2CSCvWZ-9_CMSNU,805
|
21
21
|
inspect_ai/_display/core/group.py,sha256=z8CIwQ-8Mm9adQ8JDuMjw94ih9GfymU5s-1qnbKoEPs,2871
|
22
22
|
inspect_ai/_display/core/panel.py,sha256=U0ibyTo9fP_-B_Mta6OfYAaPatZ15bPt72eyzaBB0eY,3853
|
23
|
-
inspect_ai/_display/core/progress.py,sha256=
|
23
|
+
inspect_ai/_display/core/progress.py,sha256=2dIRbpJGUx-Wz89ZABoACBGvJEGWJ3SDrFsuCrrpL7w,4198
|
24
24
|
inspect_ai/_display/core/results.py,sha256=aFLmG1Ij0fxYk2848QgQlesfMeRdHVEg_W9esmeL_S0,7355
|
25
25
|
inspect_ai/_display/core/rich.py,sha256=GPzc-0PWZVOPWxnjfQmNSK66uZXc3x8joz4ethgv_4M,2729
|
26
26
|
inspect_ai/_display/core/textual.py,sha256=kzMTt8ijrodwhDB5V50pP2IBhnUCusVbP86TytU_rA8,870
|
@@ -28,7 +28,7 @@ inspect_ai/_display/plain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
28
28
|
inspect_ai/_display/plain/display.py,sha256=fGITQj6w4-2A4zNMKFW32wdyVB5JpK-LsXMbFckzXTA,6743
|
29
29
|
inspect_ai/_display/rich/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
30
|
inspect_ai/_display/rich/display.py,sha256=ecEcahmRJirrYOorcVGuH7Qeyj0NdhsByMxasTxMpFc,10902
|
31
|
-
inspect_ai/_display/textual/app.py,sha256=
|
31
|
+
inspect_ai/_display/textual/app.py,sha256=Ct9aAKw6vFIni5kyOWu0Fd70Sw3xB1pVaMriNEBu3UA,16021
|
32
32
|
inspect_ai/_display/textual/app.tcss,sha256=ymx47Y2fAbce4vPOrpeij1p9qwSipT7Dd6fSxCTknT8,249
|
33
33
|
inspect_ai/_display/textual/display.py,sha256=zTG8k67iT-xq1H8CVwtqZdvuo_O2hsgh4q4y8EKRkf8,2027
|
34
34
|
inspect_ai/_display/textual/theme.py,sha256=SVf2UhQVuEOzzNx1Pl2bqLrofw13ykQKAVnevUpJBYs,588
|
@@ -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=rBaBP__MbKEX18B00nQCiLrWO9MmtSn0arh-zL90c8I,18206
|
40
40
|
inspect_ai/_display/textual/widgets/sandbox.py,sha256=VRdC1NGKfog2gXz8a8aCIaXgPDVewW9CuoC-k0LUXfY,1132
|
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
|
@@ -122,7 +122,7 @@ inspect_ai/_view/www/.gitignore,sha256=Qyau1UN5uAQB8cwjhokiMEMgJtQCReq-6ohBVCXV8
|
|
122
122
|
inspect_ai/_view/www/.prettierignore,sha256=SiJfow55o33Kh0KB2BJGQsjgyHNURdtmI097aY6kJzc,85
|
123
123
|
inspect_ai/_view/www/.prettierrc.js,sha256=zCwLdzlQ5eH3rt4QYL8y-GYk4IRw6u0V_N1kJYti7aI,397
|
124
124
|
inspect_ai/_view/www/.tool-versions,sha256=f_sejk8S4O7DHHSB2O2Kb9nt03ih81IgZ2u2ZrwIvEE,14
|
125
|
-
inspect_ai/_view/www/App.css,sha256=
|
125
|
+
inspect_ai/_view/www/App.css,sha256=wbz5XLohG8zrUaw1JMMRXSwZLN53PZPoZY1xTH6OiMg,26607
|
126
126
|
inspect_ai/_view/www/README.md,sha256=Yq1cv_iB_DOf0xWCNrk8EdtVRtVFkaCzbDWQ_MXYJ8U,949
|
127
127
|
inspect_ai/_view/www/eslint.config.mjs,sha256=wUi4ffMbjLKiLDBegWY6814TFu_ojR5GhA8f9vwIqjE,296
|
128
128
|
inspect_ai/_view/www/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9MAs,1508
|
@@ -138,8 +138,8 @@ inspect_ai/_view/www/.vscode/extensions.json,sha256=E73RWLzcoyeluE_ijGxaNSOK9xC0
|
|
138
138
|
inspect_ai/_view/www/.vscode/settings.json,sha256=g5hrVnMaYxM06JpiJD2EuE2xjcbF6xNAtL2fuKgG1-8,200
|
139
139
|
inspect_ai/_view/www/dist/index.html,sha256=gpdu6SR-SOH9EWx15cCWHzujMZujnZR5tRlEfROJg2A,997
|
140
140
|
inspect_ai/_view/www/dist/assets/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9MAs,1508
|
141
|
-
inspect_ai/_view/www/dist/assets/index.css,sha256=
|
142
|
-
inspect_ai/_view/www/dist/assets/index.js,sha256=
|
141
|
+
inspect_ai/_view/www/dist/assets/index.css,sha256=LXlByh-4-A1aCndGppGI5pnGE1jiUHayZ9VDuPBarno,893396
|
142
|
+
inspect_ai/_view/www/dist/assets/index.js,sha256=cB5QrZSKv-815-Xr7xi8MZzkUdvGIFAn1PqtCiZ-X2g,2629550
|
143
143
|
inspect_ai/_view/www/src/App.tsx,sha256=EvpnQfpWugx4PJivUN8GSUo8RXI4sHAFiIfacVXZ1Z0,28854
|
144
144
|
inspect_ai/_view/www/src/AppErrorBoundary.tsx,sha256=RyhZWbIMZj1QeUOUUXh9hUFvq6LoDEoHuTY0giswmL0,1169
|
145
145
|
inspect_ai/_view/www/src/constants.ts,sha256=UIxGbDscs61CcOQLQiW6MsZAU1uupSYNVLGxx2pp14A,1169
|
@@ -209,7 +209,7 @@ inspect_ai/_view/www/src/metadata/MetaDataView.module.css,sha256=-8AWTfZEMm7PEtS
|
|
209
209
|
inspect_ai/_view/www/src/metadata/MetaDataView.tsx,sha256=sSPMHujF9X1f5kGL_wYfjCwoK44EFoN2UEIIvuMxL18,2212
|
210
210
|
inspect_ai/_view/www/src/metadata/MetadataGrid.module.css,sha256=XuDbibxDp3ucmUw-pyjY5F0YUuzDfd5zyRSu3iJ-86I,203
|
211
211
|
inspect_ai/_view/www/src/metadata/RenderedContent.module.css,sha256=Ji5KWs-f7J2g-OqZ41Rxr0DAOkHHTDL-w7KAjgWxeVo,134
|
212
|
-
inspect_ai/_view/www/src/metadata/RenderedContent.tsx,sha256=
|
212
|
+
inspect_ai/_view/www/src/metadata/RenderedContent.tsx,sha256=vE-qwTQ8saA8v1bRJBDTzwWCHIYfjuiaHu7Q__Lj6e4,6458
|
213
213
|
inspect_ai/_view/www/src/metadata/types.ts,sha256=Ss21MoobQ3SS1D3sbgQp_ab0ef4nD0MtTebUSllTWKs,345
|
214
214
|
inspect_ai/_view/www/src/plan/DatasetDetailView.module.css,sha256=FxQ9APykN8fb9JPADCIeO6wq7F9YEmRll8P04Ay3k0o,32
|
215
215
|
inspect_ai/_view/www/src/plan/DatasetDetailView.tsx,sha256=rfwFXStrKhmupTDTU51g6OEwtdTYwFiUalR6kcRv-Ms,902
|
@@ -226,7 +226,7 @@ inspect_ai/_view/www/src/samples/InlineSampleDisplay.module.css,sha256=cAigEhQV3
|
|
226
226
|
inspect_ai/_view/www/src/samples/InlineSampleDisplay.tsx,sha256=HcYwnk0s89khE5jjIeLylvJyvgh8iNjYe8-E1O-HeYA,1421
|
227
227
|
inspect_ai/_view/www/src/samples/SampleDialog.tsx,sha256=6J20w1ESDeifdeC1GJSkTlh79v3oY7b96vVrgXN4cYo,3075
|
228
228
|
inspect_ai/_view/www/src/samples/SampleDisplay.module.css,sha256=mP-4LV47uWGHWkKMkXwIOOZHySrjsnsiYOi2XNAptYw,317
|
229
|
-
inspect_ai/_view/www/src/samples/SampleDisplay.tsx,sha256=
|
229
|
+
inspect_ai/_view/www/src/samples/SampleDisplay.tsx,sha256=MdoOf8cKvY5vfvmMJ6tfpeEw8mQRIkH8iuPIAk6GpxA,10235
|
230
230
|
inspect_ai/_view/www/src/samples/SampleSummaryView.module.css,sha256=ggaMIvv6LrExwB5U5yp0i0Wl9DIVaYbT0U0dX_VO3bc,314
|
231
231
|
inspect_ai/_view/www/src/samples/SampleSummaryView.tsx,sha256=6v-6kOMblItnREGdAaftZvzr350lWA8UvOiPR7sj9Uw,4497
|
232
232
|
inspect_ai/_view/www/src/samples/SamplesTools.tsx,sha256=adPNJnMag7gwD1AEFG8CjBUsuvmaTCqkL3LeUGKxOSc,1492
|
@@ -291,7 +291,7 @@ inspect_ai/_view/www/src/samples/sample-tools/sample-filter/SampleFilter.tsx,sha
|
|
291
291
|
inspect_ai/_view/www/src/samples/sample-tools/sample-filter/completions.ts,sha256=Spo3X_ImMD5gUGexHWetgr3JlstbQnyYbZ0RNSqsgSI,10547
|
292
292
|
inspect_ai/_view/www/src/samples/sample-tools/sample-filter/language.ts,sha256=OH0XXl_O2E9Q1MsVR0m9oGfTDVqPzohd9KPALiQGB2U,721
|
293
293
|
inspect_ai/_view/www/src/samples/sample-tools/sample-filter/tokenize.ts,sha256=tD45vb1d-8XSV0RmGbdJijk92KuC555ksBsVD43uxCA,2802
|
294
|
-
inspect_ai/_view/www/src/samples/scores/SampleScoreView.module.css,sha256=
|
294
|
+
inspect_ai/_view/www/src/samples/scores/SampleScoreView.module.css,sha256=OJY2qo_1xj7Z4eaeKqxJc0tHDJppTYwfi7MM69U8feI,749
|
295
295
|
inspect_ai/_view/www/src/samples/scores/SampleScoreView.tsx,sha256=uOsYK5aLZ6E_5jFfu05LVMYCacGqEI3LblNcLckGTF4,4880
|
296
296
|
inspect_ai/_view/www/src/samples/scores/SampleScores.module.css,sha256=jhwzLYwYRzEFhGqFZUYpzHOG3yDDY33rH14-ECgC9TQ,96
|
297
297
|
inspect_ai/_view/www/src/samples/scores/SampleScores.tsx,sha256=xpO7ziC4WOj5ELq5Q_2arXlEwzuwyFVDGGGc3PkJAbI,979
|
@@ -372,7 +372,7 @@ inspect_ai/_view/www/src/workspace/navbar/Navbar.tsx,sha256=_3wp8SRFTE5F9YUJxZ4f
|
|
372
372
|
inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.module.css,sha256=6WFbRflx-OitSjKIJCXnhRo3KVZhYJCK35qsm6kGbX4,811
|
373
373
|
inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.tsx,sha256=T704YE_MkFamr-fbp0Ew0PUwik_9ZEKf6zOk9qWFZzU,3285
|
374
374
|
inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.module.css,sha256=-nGcKCV-RK-Fo21renL-t7GwyF1nsODfuRKHXakhwIc,1615
|
375
|
-
inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx,sha256=
|
375
|
+
inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx,sha256=vxoJsuK84X5uLLsgsGLPIywUZYYRZkmPnU9wmXMcfKU,4574
|
376
376
|
inspect_ai/_view/www/src/workspace/navbar/SecondaryBar.module.css,sha256=c_nrfkns3HLqojutb9himHaKqGZlFQt375f81p6vWO4,353
|
377
377
|
inspect_ai/_view/www/src/workspace/navbar/SecondaryBar.tsx,sha256=lasEuHmHgS-O4yPhXPsyMR9jG4T8fM5x9NRLHX5bhpc,5090
|
378
378
|
inspect_ai/_view/www/src/workspace/navbar/StatusPanel.module.css,sha256=5jwAeGZ14LT66dql80qTu2nig75kk9Ethp4ftHW6Zsw,290
|
@@ -611,15 +611,15 @@ inspect_ai/util/_sandbox/self_check.py,sha256=YaonS0VQyutDpOlHchGhrIUm13juUzEkrk
|
|
611
611
|
inspect_ai/util/_sandbox/service.py,sha256=2os7W8NYBDcaBoaHVfZ1YrI9hvldksmiwqkUYrCRCPo,11258
|
612
612
|
inspect_ai/util/_sandbox/docker/cleanup.py,sha256=MK6UlADcWtTDotppeVJga2ibf9Ud-e4V-5ReoNbmhqg,4793
|
613
613
|
inspect_ai/util/_sandbox/docker/compose.py,sha256=g98fwb33EsQQDHKEUYic8tPmi51IA7v3aWm3YoEBEgA,11904
|
614
|
-
inspect_ai/util/_sandbox/docker/config.py,sha256=
|
614
|
+
inspect_ai/util/_sandbox/docker/config.py,sha256=xXO3cc4dnN9cRYxjZHYgYmGQMPL8xwhHOC4SDjifIl8,2831
|
615
615
|
inspect_ai/util/_sandbox/docker/docker.py,sha256=Dhp2-H-CFPvHD0BlDNTZZtnXj0Jh9_IZjLl7qoyUaD4,17195
|
616
616
|
inspect_ai/util/_sandbox/docker/internal.py,sha256=fATyk2pdtjSl-D0VPT4dmkXV-gOc5HrPH0EQDW4IAJY,1446
|
617
617
|
inspect_ai/util/_sandbox/docker/prereqs.py,sha256=0j6_OauBBnVlpBleADcZavIAAQZy4WewVjbRn9c0stg,3355
|
618
618
|
inspect_ai/util/_sandbox/docker/service.py,sha256=hhHIWH1VDFLwehdGd19aUBD_VKfDO3GCPxpw1HSwVQk,2437
|
619
619
|
inspect_ai/util/_sandbox/docker/util.py,sha256=pSPsRGymrTmTnEUHiHoQSNqeurPP1mL5kB-105O6EWo,2794
|
620
|
-
inspect_ai-0.3.
|
621
|
-
inspect_ai-0.3.
|
622
|
-
inspect_ai-0.3.
|
623
|
-
inspect_ai-0.3.
|
624
|
-
inspect_ai-0.3.
|
625
|
-
inspect_ai-0.3.
|
620
|
+
inspect_ai-0.3.65.dist-info/LICENSE,sha256=xZPCr8gTiFIerrA_DRpLAbw-UUftnLFsHxKeW-NTtq8,1081
|
621
|
+
inspect_ai-0.3.65.dist-info/METADATA,sha256=nIJyGtqIHHKmAAWlL8DdZR00k3_EeATaqPxtU9j5L9E,4742
|
622
|
+
inspect_ai-0.3.65.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
623
|
+
inspect_ai-0.3.65.dist-info/entry_points.txt,sha256=WGGLmzTzDWLzYfiyovSY6oEKuf-gqzSDNOb5V-hk3fM,54
|
624
|
+
inspect_ai-0.3.65.dist-info/top_level.txt,sha256=Tp3za30CHXJEKLk8xLe9qGsW4pBzJpEIOMHOHNCXiVo,11
|
625
|
+
inspect_ai-0.3.65.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|