inspect-ai 0.3.91__py3-none-any.whl → 0.3.93__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 +31 -0
- inspect_ai/_eval/eval.py +19 -2
- inspect_ai/_eval/evalset.py +4 -1
- inspect_ai/_eval/run.py +41 -0
- inspect_ai/_eval/task/generate.py +38 -44
- inspect_ai/_eval/task/log.py +26 -28
- inspect_ai/_eval/task/run.py +13 -20
- inspect_ai/_util/local_server.py +368 -0
- inspect_ai/_util/working.py +10 -4
- inspect_ai/_view/www/dist/assets/index.css +159 -146
- inspect_ai/_view/www/dist/assets/index.js +1020 -1061
- inspect_ai/_view/www/log-schema.json +4 -3
- inspect_ai/_view/www/package.json +1 -1
- inspect_ai/_view/www/src/@types/log.d.ts +3 -2
- inspect_ai/_view/www/src/app/content/MetaDataGrid.tsx +2 -2
- inspect_ai/_view/www/src/app/content/MetaDataView.module.css +1 -1
- inspect_ai/_view/www/src/app/content/MetadataGrid.module.css +1 -1
- inspect_ai/_view/www/src/app/content/RenderedContent.tsx +1 -1
- inspect_ai/_view/www/src/app/log-view/LogView.tsx +11 -0
- inspect_ai/_view/www/src/app/log-view/tabs/InfoTab.tsx +2 -9
- inspect_ai/_view/www/src/app/log-view/tabs/ModelsTab.tsx +51 -0
- inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.module.css +6 -0
- inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.tsx +143 -0
- inspect_ai/_view/www/src/app/plan/ModelCard.tsx +1 -2
- inspect_ai/_view/www/src/app/plan/PlanCard.tsx +29 -7
- inspect_ai/_view/www/src/app/plan/PlanDetailView.module.css +1 -1
- inspect_ai/_view/www/src/app/plan/PlanDetailView.tsx +1 -198
- inspect_ai/_view/www/src/app/samples/descriptor/score/NumericScoreDescriptor.tsx +2 -1
- inspect_ai/_view/www/src/app/usage/ModelUsagePanel.tsx +3 -2
- inspect_ai/_view/www/src/app/usage/TokenTable.module.css +4 -1
- inspect_ai/_view/www/src/app/usage/TokenTable.tsx +2 -2
- inspect_ai/_view/www/src/app/usage/UsageCard.module.css +8 -3
- inspect_ai/_view/www/src/app/usage/UsageCard.tsx +1 -35
- inspect_ai/_view/www/src/components/Card.css +0 -1
- inspect_ai/_view/www/src/constants.ts +2 -0
- inspect_ai/_view/www/src/utils/numeric.ts +17 -0
- inspect_ai/agent/_agent.py +3 -3
- inspect_ai/agent/_as_solver.py +20 -12
- inspect_ai/agent/_as_tool.py +15 -3
- inspect_ai/agent/_handoff.py +8 -1
- inspect_ai/agent/_run.py +11 -3
- inspect_ai/log/__init__.py +4 -0
- inspect_ai/log/_file.py +56 -0
- inspect_ai/log/_log.py +99 -0
- inspect_ai/log/_recorders/__init__.py +2 -0
- inspect_ai/log/_recorders/buffer/database.py +12 -11
- inspect_ai/log/_recorders/buffer/filestore.py +2 -2
- inspect_ai/log/_recorders/buffer/types.py +2 -2
- inspect_ai/log/_recorders/eval.py +20 -65
- inspect_ai/log/_recorders/file.py +28 -6
- inspect_ai/log/_recorders/recorder.py +7 -0
- inspect_ai/log/_recorders/types.py +1 -23
- inspect_ai/log/_samples.py +0 -8
- inspect_ai/log/_transcript.py +7 -1
- inspect_ai/log/_util.py +52 -0
- inspect_ai/model/__init__.py +5 -1
- inspect_ai/model/_call_tools.py +32 -12
- inspect_ai/model/_generate_config.py +14 -8
- inspect_ai/model/_model.py +21 -48
- inspect_ai/model/_model_output.py +25 -0
- inspect_ai/model/_openai.py +2 -0
- inspect_ai/model/_openai_responses.py +13 -1
- inspect_ai/model/_providers/anthropic.py +13 -23
- inspect_ai/model/_providers/openai_o1.py +8 -2
- inspect_ai/model/_providers/providers.py +18 -4
- inspect_ai/model/_providers/sglang.py +241 -0
- inspect_ai/model/_providers/vllm.py +207 -400
- inspect_ai/solver/__init__.py +7 -2
- inspect_ai/solver/_basic_agent.py +3 -10
- inspect_ai/solver/_task_state.py +26 -88
- inspect_ai/tool/_json_rpc_helpers.py +45 -17
- inspect_ai/tool/_mcp/_mcp.py +2 -0
- inspect_ai/tool/_mcp/_sandbox.py +8 -2
- inspect_ai/tool/_mcp/server.py +3 -1
- inspect_ai/tool/_tool_call.py +4 -1
- inspect_ai/tool/_tool_support_helpers.py +51 -12
- inspect_ai/tool/_tools/_bash_session.py +190 -68
- inspect_ai/tool/_tools/_computer/_computer.py +25 -1
- inspect_ai/tool/_tools/_text_editor.py +4 -3
- inspect_ai/tool/_tools/_web_browser/_web_browser.py +10 -3
- inspect_ai/util/__init__.py +12 -0
- inspect_ai/util/_limit.py +393 -0
- inspect_ai/util/_limited_conversation.py +57 -0
- {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/METADATA +1 -1
- {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/RECORD +90 -109
- {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/WHEEL +1 -1
- inspect_ai/solver/_limit.py +0 -39
- inspect_ai/tool/_tools/_computer/_resources/Dockerfile +0 -102
- inspect_ai/tool/_tools/_computer/_resources/README.md +0 -30
- inspect_ai/tool/_tools/_computer/_resources/entrypoint/entrypoint.sh +0 -18
- inspect_ai/tool/_tools/_computer/_resources/entrypoint/novnc_startup.sh +0 -20
- inspect_ai/tool/_tools/_computer/_resources/entrypoint/x11vnc_startup.sh +0 -48
- inspect_ai/tool/_tools/_computer/_resources/entrypoint/xfce_startup.sh +0 -13
- inspect_ai/tool/_tools/_computer/_resources/entrypoint/xvfb_startup.sh +0 -48
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb +0 -0
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/settings.json +0 -9
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml +0 -61
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml +0 -10
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml +0 -91
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Firefox Web Browser.desktop +0 -10
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Terminal.desktop +0 -10
- inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Visual Studio Code.desktop +0 -10
- inspect_ai/tool/_tools/_computer/_resources/tool/.pylintrc +0 -8
- inspect_ai/tool/_tools/_computer/_resources/tool/.vscode/settings.json +0 -12
- inspect_ai/tool/_tools/_computer/_resources/tool/_args.py +0 -78
- inspect_ai/tool/_tools/_computer/_resources/tool/_constants.py +0 -22
- inspect_ai/tool/_tools/_computer/_resources/tool/_logger.py +0 -22
- inspect_ai/tool/_tools/_computer/_resources/tool/_run.py +0 -42
- inspect_ai/tool/_tools/_computer/_resources/tool/_tool_result.py +0 -33
- inspect_ai/tool/_tools/_computer/_resources/tool/_x11_client.py +0 -341
- inspect_ai/tool/_tools/_computer/_resources/tool/computer_tool.py +0 -141
- inspect_ai/tool/_tools/_computer/_resources/tool/pyproject.toml +0 -65
- inspect_ai/tool/_tools/_computer/_resources/tool/requirements.txt +0 -0
- inspect_ai/tool/_tools/_computer/test_args.py +0 -151
- /inspect_ai/{tool/_tools/_computer/_resources/tool/__init__.py → _view/www/src/app/log-view/tabs/ModelsTab.module.css} +0 -0
- {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/licenses/LICENSE +0 -0
- {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/top_level.txt +0 -0
@@ -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=RVGuBYwwk3c45JfyfcSFJ419etSsv3-Z7AyfQE-Hul0,3912
|
5
5
|
inspect_ai/_cli/common.py,sha256=WbAgGbLcxABcWoEWiGCWSbkkxYr2jmL9i0cyseWHmRA,4165
|
6
|
-
inspect_ai/_cli/eval.py,sha256=
|
6
|
+
inspect_ai/_cli/eval.py,sha256=8sORLa4rq88FlESizXIxdd4UE7yhi0PjYVzO_QlUnOA,39366
|
7
7
|
inspect_ai/_cli/info.py,sha256=QMxaTG9TmzW95EiLrOgkzubvavoR-VHxo3eV7ppmrzI,1789
|
8
8
|
inspect_ai/_cli/list.py,sha256=M8mazI8Zuq8Hp99YWKnxQd9UWx1Qi87zfXRzZYAAakk,2459
|
9
9
|
inspect_ai/_cli/log.py,sha256=O-w7GqsE7tLojPnEtpWXPSh0Vu2Hbrbxjneyc1BFfpk,5817
|
@@ -46,23 +46,23 @@ inspect_ai/_display/textual/widgets/transcript.py,sha256=zaxlDixT6Fie0acAWBM9Hlt
|
|
46
46
|
inspect_ai/_display/textual/widgets/vscode.py,sha256=SAIPO8VOkT_CFIfnCP_XxKixojdYXxMNdYU3Z2mq5Ek,1298
|
47
47
|
inspect_ai/_eval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
48
|
inspect_ai/_eval/context.py,sha256=mdYinWG2lcYkWLieT42suzUDyaQBVHosbaWTKA6Uu48,1407
|
49
|
-
inspect_ai/_eval/eval.py,sha256=
|
50
|
-
inspect_ai/_eval/evalset.py,sha256=
|
49
|
+
inspect_ai/_eval/eval.py,sha256=MaUCqFx5E_wWy4MxgsRX4s5ANQlNDe2NpBcVqgh7HZU,42941
|
50
|
+
inspect_ai/_eval/evalset.py,sha256=Gvj22yy5WI_SOJYfVdtC-qmMjzdBOFTSq_RZznIQnZo,25006
|
51
51
|
inspect_ai/_eval/list.py,sha256=VbZ-2EI6MqrXvCN7VTz21TQSoU5K5_Q0hqhxmj5A_m0,3744
|
52
52
|
inspect_ai/_eval/loader.py,sha256=PyFLFEQk5wYf27urGwoOBnc-Xp67TIFuatKhjEyHNg8,24805
|
53
53
|
inspect_ai/_eval/registry.py,sha256=8Cm-qyDB6Fthea8DUe-QES9plly_Pf2MUuCgeNQ3fOY,5303
|
54
|
-
inspect_ai/_eval/run.py,sha256=
|
54
|
+
inspect_ai/_eval/run.py,sha256=cv54aTFOi8nMWSG0Y40Z9o07V3nA-0_9uufgQDFP89k,20586
|
55
55
|
inspect_ai/_eval/score.py,sha256=ns5X3NJBfQ9bcue54wrLIdc2674ofcua1ZtX3ZOwkOI,10477
|
56
56
|
inspect_ai/_eval/task/__init__.py,sha256=6FvojMW3yo36L7xDacppCHDxt6A8_tzj_ftg5bQ6eNk,199
|
57
57
|
inspect_ai/_eval/task/constants.py,sha256=quAKMw-4-3xKd1T_KwXCZvHYoKRXt1ZGuaHbBcWJwnA,72
|
58
58
|
inspect_ai/_eval/task/epochs.py,sha256=Ci7T6CQniSOTChv5Im2dCdSDrP-5hq19rV6iJ2uBcH8,700
|
59
59
|
inspect_ai/_eval/task/error.py,sha256=Vhqinfdf0eIrjn7kUY7-id8Kbdggr-fEFpAJeJrkJ1M,1244
|
60
|
-
inspect_ai/_eval/task/generate.py,sha256=
|
60
|
+
inspect_ai/_eval/task/generate.py,sha256=yzeGlRUgIut-3OvF0xyx1ZjuJS61nR7thHV8tqv_aTE,2146
|
61
61
|
inspect_ai/_eval/task/images.py,sha256=nTzHizlyuPYumPH7gAOBSrNkTwTbAmZ7tKdzN7d_R2k,4035
|
62
|
-
inspect_ai/_eval/task/log.py,sha256=
|
62
|
+
inspect_ai/_eval/task/log.py,sha256=D3P3t6-E37GCQRUngrPDJ7VDbfuGoZm9-NsrBIpT_o0,11829
|
63
63
|
inspect_ai/_eval/task/resolved.py,sha256=LBVHEeq9N1fkRObmA2pnDE_l_EuH6n2Dg8-c8yCGT5U,1007
|
64
64
|
inspect_ai/_eval/task/results.py,sha256=x4weYRK2XGowfBG3f2msOeZQ_pxh230HTlw6kps33jw,17925
|
65
|
-
inspect_ai/_eval/task/run.py,sha256=
|
65
|
+
inspect_ai/_eval/task/run.py,sha256=IdI2xk-zl5U2OgJKURbRYbfPcTJdjFRcdAvOakUWCYE,39343
|
66
66
|
inspect_ai/_eval/task/sandbox.py,sha256=x9GU-o2LtJQtdZjdmwRtAMJ5Mzd_te6hrm-DjiZB60g,7737
|
67
67
|
inspect_ai/_eval/task/task.py,sha256=GyyzKkljhIHgM0Lh7wcBFHOgjqTqhOSkThHSQD4fIvk,16308
|
68
68
|
inspect_ai/_eval/task/tasks.py,sha256=8fy5k070KgjYwaZQ_Nk6_r-38VTU6HB-qh7ixc4JzKI,727
|
@@ -97,6 +97,7 @@ inspect_ai/_util/interrupt.py,sha256=T30e5YaKSNmnO695p0lK0dquUWFq6dNNtdAFPmWGwME
|
|
97
97
|
inspect_ai/_util/json.py,sha256=LiHF4XPrcuCBpnBKYCIX2AkvmsYuPieQ6HNdSlUMVvU,3653
|
98
98
|
inspect_ai/_util/kvstore.py,sha256=z2IXLWP4QqqGqsq5_MbYjBQPcEJqfWK4IyZXgV-kppA,2398
|
99
99
|
inspect_ai/_util/list.py,sha256=6_5r5jI5RKK34kCmIqqVQ5hYG-G8v0F5H7L-DmQQ2E4,279
|
100
|
+
inspect_ai/_util/local_server.py,sha256=ErSCTPHLSGxQ2-RFPdXNbA1H_Qbh9dTvjJ6qnhKPtFQ,11811
|
100
101
|
inspect_ai/_util/logger.py,sha256=XpGyoe8V7FIhNU1rnjTjwR07LVbshA9rRZn33sOitig,6230
|
101
102
|
inspect_ai/_util/notebook.py,sha256=Mgz3J4uBh-MqVBRmpiJqDHRpn2hd7HIOBeJBwLG-bbk,2998
|
102
103
|
inspect_ai/_util/notgiven.py,sha256=zkn6AYflKLf8YlnwTAMxPLQ-4LyIVmKpGcNcXf-Ssng,457
|
@@ -118,7 +119,7 @@ inspect_ai/_util/transcript.py,sha256=cYEUoXdYSjGgas_co1vo8aFoYz4MYfkYvrVRoCu0sD
|
|
118
119
|
inspect_ai/_util/url.py,sha256=Ci9I1T7hSRuA1CvgQmN9TWTSzUPO4ILMkd_8maZlO6k,622
|
119
120
|
inspect_ai/_util/version.py,sha256=PRh1HSHD_EgRW_VYIPquOPj-gL9DM164ePQ9LL3d9lU,739
|
120
121
|
inspect_ai/_util/vscode.py,sha256=VPfLUA9e81LUOHBtz2SnztXueKSz1cIm4bLp9KPUJnk,2753
|
121
|
-
inspect_ai/_util/working.py,sha256=
|
122
|
+
inspect_ai/_util/working.py,sha256=b4VbvwyGm2jydLxUsT3eWZ_XR7zjbgoUHZTvsTLknr8,1763
|
122
123
|
inspect_ai/_view/notify.py,sha256=w79p_o6mnL8NYKd7QgibnUdDGnUELfQO8fhhkjq7n4o,1433
|
123
124
|
inspect_ai/_view/schema.py,sha256=SyWu74T2AKT32s-IG3HgjwiVoAgVe44l0Xgmb2pyl4U,1796
|
124
125
|
inspect_ai/_view/server.py,sha256=xVg_1rb-8W_rm60gNzX-2dpJXaKjupgiuol1TXHSIfM,17641
|
@@ -134,8 +135,8 @@ inspect_ai/_view/www/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9
|
|
134
135
|
inspect_ai/_view/www/index.html,sha256=wqZHIn_9TODavPHnGyY9F1RH6JBIphoaqRIRgBQgrUE,910
|
135
136
|
inspect_ai/_view/www/jest.config.mjs,sha256=BnaTER8v4adXA23FSli68tofSOcF4CHYlRsNxWVcqOg,664
|
136
137
|
inspect_ai/_view/www/jsconfig.json,sha256=vt1gPPYezOFeV9nofA93CmVJAKGb1QeKGuyvEn1CXgk,383
|
137
|
-
inspect_ai/_view/www/log-schema.json,sha256=
|
138
|
-
inspect_ai/_view/www/package.json,sha256=
|
138
|
+
inspect_ai/_view/www/log-schema.json,sha256=TWrOXxdkGr-XlHfSwo625wE9aEFygVm6gnlpeYNiyYA,119332
|
139
|
+
inspect_ai/_view/www/package.json,sha256=24W4nDPiIunBik0t6w-HRRJuQiDYG_ocOhE3IYZs0po,3149
|
139
140
|
inspect_ai/_view/www/postcss.config.cjs,sha256=mwpiwZD1alr_ECeLVf7vIpX_5KiARNF8HbkpWWiqSac,324
|
140
141
|
inspect_ai/_view/www/tsconfig.json,sha256=FbmQYpX8ta5Wyi8b8md2O_8CXkfQgr-Pe2yRyKXeqM0,619
|
141
142
|
inspect_ai/_view/www/vite.config.js,sha256=AEWglm6w6RKhbdTxWAX_sXEv6h297f2MDuafPf8yh2o,724
|
@@ -144,13 +145,13 @@ inspect_ai/_view/www/.vscode/extensions.json,sha256=E73RWLzcoyeluE_ijGxaNSOK9xC0
|
|
144
145
|
inspect_ai/_view/www/.vscode/settings.json,sha256=g5hrVnMaYxM06JpiJD2EuE2xjcbF6xNAtL2fuKgG1-8,200
|
145
146
|
inspect_ai/_view/www/dist/index.html,sha256=gpdu6SR-SOH9EWx15cCWHzujMZujnZR5tRlEfROJg2A,997
|
146
147
|
inspect_ai/_view/www/dist/assets/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9MAs,1508
|
147
|
-
inspect_ai/_view/www/dist/assets/index.css,sha256=
|
148
|
-
inspect_ai/_view/www/dist/assets/index.js,sha256=
|
149
|
-
inspect_ai/_view/www/src/constants.ts,sha256=
|
148
|
+
inspect_ai/_view/www/dist/assets/index.css,sha256=W-EDwhp-W-E6EU8Mh7L-_-Qla-9iUs96TOQMN_MtjhI,2361915
|
149
|
+
inspect_ai/_view/www/dist/assets/index.js,sha256=loxG6EXFmOqHQRyCqp4M7gFaTADx7dSD0gmaFfg-H3k,3349433
|
150
|
+
inspect_ai/_view/www/src/constants.ts,sha256=eKw5N6lCj7ApEeU8pVjjmbhpY1EAl6A0gg-OC2bf02Q,1268
|
150
151
|
inspect_ai/_view/www/src/index.tsx,sha256=e1uhgfxfG_QKxGW3CoZqMHrCu-Xa9o--0UD_AYxkwPs,2297
|
151
152
|
inspect_ai/_view/www/src/@types/asciicinema-player.d.ts,sha256=PgM6swZ9P5pKXcdKfYfmd1dcZQDy105K60NvcQPFqVo,647
|
152
153
|
inspect_ai/_view/www/src/@types/jsondiffpatch.d.ts,sha256=QXTAwln2Z1vDiNuoG4b-VWoH0hKMJHSM1L2deXEV6ZQ,188
|
153
|
-
inspect_ai/_view/www/src/@types/log.d.ts,sha256=
|
154
|
+
inspect_ai/_view/www/src/@types/log.d.ts,sha256=Qrr-v8GICXUQU3VB2hGLCdWEpjDHtgiem_eX4MxU-VQ,34238
|
154
155
|
inspect_ai/_view/www/src/@types/markdown-it-katex.d.ts,sha256=kvZSFtTInD4akeCLVWlwjjqHdZqMpE3rXjXWQvMgcOw,555
|
155
156
|
inspect_ai/_view/www/src/@types/prism.d.ts,sha256=g0uL_2XdnxuCVS_XX6iD9PHIF9PWix_vPXHOVz_4vII,342
|
156
157
|
inspect_ai/_view/www/src/app/App.css,sha256=2aPkzna6oFsoxM2FpuZucd5RxJeV0-Ss0EkPB-yoImY,27381
|
@@ -161,15 +162,15 @@ inspect_ai/_view/www/src/app/appearance/colors.ts,sha256=nkVEfmgLb8vTOF1o0YNu0SW
|
|
161
162
|
inspect_ai/_view/www/src/app/appearance/fonts.ts,sha256=HQxM4cdxSpPQCGJX4vsfKU9wFd1TWNUXDTK7GP0bMUE,823
|
162
163
|
inspect_ai/_view/www/src/app/appearance/icons.ts,sha256=u9Uudon5jHvcfkhVMc04RudQYMyfbJRk1bSQ_v7CoLA,2778
|
163
164
|
inspect_ai/_view/www/src/app/appearance/styles.ts,sha256=3celoImwwXzUteajPsH7HRhXj_hb-hrOj-pw-nvG4lg,1155
|
164
|
-
inspect_ai/_view/www/src/app/content/MetaDataGrid.tsx,sha256=
|
165
|
-
inspect_ai/_view/www/src/app/content/MetaDataView.module.css,sha256=
|
165
|
+
inspect_ai/_view/www/src/app/content/MetaDataGrid.tsx,sha256=c-6EnGrT9eecS8tQIeINp8lKm6cUfUgL2rzDaO9Mg7s,2078
|
166
|
+
inspect_ai/_view/www/src/app/content/MetaDataView.module.css,sha256=Kuf9QEozmGvd5E-DIgCvEdI80FI-LvTfZteIqNXNHso,437
|
166
167
|
inspect_ai/_view/www/src/app/content/MetaDataView.tsx,sha256=-ERiqnYNP6fc4h6Q7EbrfQrcDHYBTgGJdXwiw87kpfQ,2524
|
167
|
-
inspect_ai/_view/www/src/app/content/MetadataGrid.module.css,sha256=
|
168
|
+
inspect_ai/_view/www/src/app/content/MetadataGrid.module.css,sha256=23CCTIjAV03Tgs8tJJc9yT-ASgG5SlOyHEntfovyS3Y,223
|
168
169
|
inspect_ai/_view/www/src/app/content/RenderedContent.module.css,sha256=Ji5KWs-f7J2g-OqZ41Rxr0DAOkHHTDL-w7KAjgWxeVo,134
|
169
|
-
inspect_ai/_view/www/src/app/content/RenderedContent.tsx,sha256=
|
170
|
+
inspect_ai/_view/www/src/app/content/RenderedContent.tsx,sha256=KDLkesHXllim2es-jAVkDd5u3YOIIt1KjrGKFgb4Lpg,6969
|
170
171
|
inspect_ai/_view/www/src/app/content/types.ts,sha256=Ss21MoobQ3SS1D3sbgQp_ab0ef4nD0MtTebUSllTWKs,345
|
171
172
|
inspect_ai/_view/www/src/app/log-view/LogView.module.css,sha256=Y_H9fBeSeWKvypAu1lCZEoHSx2HycohBH83bMFgSRQM,538
|
172
|
-
inspect_ai/_view/www/src/app/log-view/LogView.tsx,sha256
|
173
|
+
inspect_ai/_view/www/src/app/log-view/LogView.tsx,sha256=-cjiGRlcS6tiID8X7JAArDI5d68pfxit-LMgaqyeBws,4699
|
173
174
|
inspect_ai/_view/www/src/app/log-view/LogViewContainer.tsx,sha256=gyOsJjxJj7az--90dUdsw7PTEGyZRzXX7p8N5Ga5mEY,4572
|
174
175
|
inspect_ai/_view/www/src/app/log-view/LogViewLayout.tsx,sha256=BXjACrtcHk_RNPPK59OZwAqb9RUX5w4ROX0QN8lqwYw,3514
|
175
176
|
inspect_ai/_view/www/src/app/log-view/types.ts,sha256=uTBvuGfwiMW5c9srzDFwx-bMiz2sF0NkKFLlQaVt5s0,295
|
@@ -193,12 +194,16 @@ inspect_ai/_view/www/src/app/log-view/navbar/SecondaryBar.tsx,sha256=3XBCuRuqM6a
|
|
193
194
|
inspect_ai/_view/www/src/app/log-view/navbar/StatusPanel.module.css,sha256=V8GzDeWpFOnEE0Lye02USjDg99cLQ98s6PtcUSTIGDI,314
|
194
195
|
inspect_ai/_view/www/src/app/log-view/navbar/StatusPanel.tsx,sha256=EhHGlWYPsH303cvSx9Tywtyq_bOVpBgUZqfkdoIqQAQ,1326
|
195
196
|
inspect_ai/_view/www/src/app/log-view/tabs/InfoTab.module.css,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
196
|
-
inspect_ai/_view/www/src/app/log-view/tabs/InfoTab.tsx,sha256=
|
197
|
+
inspect_ai/_view/www/src/app/log-view/tabs/InfoTab.tsx,sha256=xeSOP4bw6DdzNh529wW2Pr6pO82HzN4yocSmPMHABnQ,2302
|
197
198
|
inspect_ai/_view/www/src/app/log-view/tabs/JsonTab.module.css,sha256=pXkP6EGjH8RNdQZ_sZjPSoV7qzVJu-o8KAzzCWFRWmQ,92
|
198
199
|
inspect_ai/_view/www/src/app/log-view/tabs/JsonTab.tsx,sha256=CTXu7HYgmSx1vOCh2zBFH5p1992VA1NZeexhTQC3uv0,3793
|
200
|
+
inspect_ai/_view/www/src/app/log-view/tabs/ModelsTab.module.css,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
|
+
inspect_ai/_view/www/src/app/log-view/tabs/ModelsTab.tsx,sha256=1jxFoZmhXFzZxARkVcqFyXJMD37vCexJT57D_Zak1JA,1295
|
199
202
|
inspect_ai/_view/www/src/app/log-view/tabs/RunningNoSamples.module.css,sha256=g9CrwVvQCFnS6ufgwcR2qg2-5C8BgdQcOIjrPBhq-TI,290
|
200
203
|
inspect_ai/_view/www/src/app/log-view/tabs/RunningNoSamples.tsx,sha256=i8Zh6oB5lTFgAicpn42l5ADcUc5_91VvyyErXtNJh8I,589
|
201
204
|
inspect_ai/_view/www/src/app/log-view/tabs/SamplesTab.tsx,sha256=y37x3TCaP4czlrVoTK7MWDUYiDkAPWXxqQ3KYASv5dY,6952
|
205
|
+
inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.module.css,sha256=9_217tOMqvZHsnNVKhTIJaG4RJLpcUL2zznArxwAMmw,133
|
206
|
+
inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.tsx,sha256=4JB38Uk8R3othqqg8d8JQopQx5LSH8wygkleaidWYJo,3997
|
202
207
|
inspect_ai/_view/www/src/app/log-view/tabs/grouping.ts,sha256=JILNy00bZrDidj5gU0RQ_dz2Io9TAp8n09Y-ng8YJOY,6208
|
203
208
|
inspect_ai/_view/www/src/app/log-view/tabs/types.ts,sha256=I3m1y9cjSTciSpLYe0enOqVjmR_4q1Fb67NNjtGfX4o,481
|
204
209
|
inspect_ai/_view/www/src/app/plan/DatasetDetailView.module.css,sha256=FxQ9APykN8fb9JPADCIeO6wq7F9YEmRll8P04Ay3k0o,32
|
@@ -206,10 +211,10 @@ inspect_ai/_view/www/src/app/plan/DatasetDetailView.tsx,sha256=q5TyMgWlRlzZhBPZq
|
|
206
211
|
inspect_ai/_view/www/src/app/plan/DetailStep.module.css,sha256=KjlqdxoqR_erUMVpdmj5mQ2Pg4-DeknQ1y4HHO3qJNU,160
|
207
212
|
inspect_ai/_view/www/src/app/plan/DetailStep.tsx,sha256=W_XEqC_cmoyJ14FToYLjGTVL7jKAseamLChuHh73_kY,795
|
208
213
|
inspect_ai/_view/www/src/app/plan/ModelCard.module.css,sha256=gTFB8Pb241-4PE7ntwLZAjeoddkAyPMx--l4EhTlA_0,257
|
209
|
-
inspect_ai/_view/www/src/app/plan/ModelCard.tsx,sha256=
|
210
|
-
inspect_ai/_view/www/src/app/plan/PlanCard.tsx,sha256=
|
211
|
-
inspect_ai/_view/www/src/app/plan/PlanDetailView.module.css,sha256=
|
212
|
-
inspect_ai/_view/www/src/app/plan/PlanDetailView.tsx,sha256=
|
214
|
+
inspect_ai/_view/www/src/app/plan/ModelCard.tsx,sha256=rm2hNtXDZgK9CsVfQ3HP_Zefq3CSPn7OeGhoAI1WIBg,2834
|
215
|
+
inspect_ai/_view/www/src/app/plan/PlanCard.tsx,sha256=AqPQ5FyVpjvUognIo2_YgEZmkPWbiHceJvFEhgfSIi4,1206
|
216
|
+
inspect_ai/_view/www/src/app/plan/PlanDetailView.module.css,sha256=zdGBIgolgpTkCDNZIzysSx6hz07SswF_P_mDjKm-Jmk,629
|
217
|
+
inspect_ai/_view/www/src/app/plan/PlanDetailView.tsx,sha256=5yJDdbbRrEujr-EybmXm23jHw4medZW-F-0RK2eFZI8,3062
|
213
218
|
inspect_ai/_view/www/src/app/plan/ScorerDetailView.module.css,sha256=8bmXC16hw-m5Mqr9KD5jTbGEk116hCxL-rMf0UZQevI,30
|
214
219
|
inspect_ai/_view/www/src/app/plan/ScorerDetailView.tsx,sha256=eOvNrPwLm3qTpUtRzh0l_soSfOUeTJHfPWvWHUNr3-4,695
|
215
220
|
inspect_ai/_view/www/src/app/plan/SolverDetailView.module.css,sha256=q6qm4yP-JiG3hdTXDxS3w4aVCbOEZ9Tgj3WqtjK8v2Y,208
|
@@ -255,7 +260,7 @@ inspect_ai/_view/www/src/app/samples/descriptor/types.ts,sha256=0L_v1klxUQWv3mHY
|
|
255
260
|
inspect_ai/_view/www/src/app/samples/descriptor/score/BooleanScoreDescriptor.module.css,sha256=EyefTGiMMmPpXh7vEKBRVn_LyJAeUunIt_vbalUYzNs,418
|
256
261
|
inspect_ai/_view/www/src/app/samples/descriptor/score/BooleanScoreDescriptor.tsx,sha256=qbSERwsBQs6J9LLzd8_6qlrwgmm8s_KUzf_2B-XOB44,685
|
257
262
|
inspect_ai/_view/www/src/app/samples/descriptor/score/CategoricalScoreDescriptor.tsx,sha256=zYobki3oM51vLoGFXhmxW-cn-Q40to47wcpHz3M2-vQ,479
|
258
|
-
inspect_ai/_view/www/src/app/samples/descriptor/score/NumericScoreDescriptor.tsx,sha256=
|
263
|
+
inspect_ai/_view/www/src/app/samples/descriptor/score/NumericScoreDescriptor.tsx,sha256=eFFV6-0fM8SP1xrk74fPLFzHZmqq6a6rcWwAeFx_gB0,945
|
259
264
|
inspect_ai/_view/www/src/app/samples/descriptor/score/ObjectScoreDescriptor.module.css,sha256=XYAbQgntewJJu1fFouHemrb0MvfNE2Beh02C0wvMT6w,210
|
260
265
|
inspect_ai/_view/www/src/app/samples/descriptor/score/ObjectScoreDescriptor.tsx,sha256=UaCWDuf6xcvpsbjz_HIHwTpT4SPThSQAVkbhYein4c4,1976
|
261
266
|
inspect_ai/_view/www/src/app/samples/descriptor/score/OtherScoreDescriptor.tsx,sha256=0jHnqe6Esrh1rfRcp7L8yws23e4LuWji6iZC2BXzrS4,513
|
@@ -357,11 +362,11 @@ inspect_ai/_view/www/src/app/sidebar/SidebarScoresView.module.css,sha256=kmLr5v-
|
|
357
362
|
inspect_ai/_view/www/src/app/sidebar/SidebarScoresView.tsx,sha256=OdGYhkShIzY8zYw4Z3p4MwnGqOn7bBNFxY70zMW8BEU,1986
|
358
363
|
inspect_ai/_view/www/src/app/usage/ModelTokenTable.tsx,sha256=Lw0Sh6cQgbj76cNJKjRVOlqJmJtIYNFWeShdsGF-wBc,627
|
359
364
|
inspect_ai/_view/www/src/app/usage/ModelUsagePanel.module.css,sha256=LAIn2KaAp5gMb1kKBDtlCmzThXZMZK5hMq7nrfp0dzs,336
|
360
|
-
inspect_ai/_view/www/src/app/usage/ModelUsagePanel.tsx,sha256=
|
361
|
-
inspect_ai/_view/www/src/app/usage/TokenTable.module.css,sha256=
|
362
|
-
inspect_ai/_view/www/src/app/usage/TokenTable.tsx,sha256=
|
363
|
-
inspect_ai/_view/www/src/app/usage/UsageCard.module.css,sha256=
|
364
|
-
inspect_ai/_view/www/src/app/usage/UsageCard.tsx,sha256=
|
365
|
+
inspect_ai/_view/www/src/app/usage/ModelUsagePanel.tsx,sha256=8AAM52PFJUqW6C8ECu65wO0hL1BTsMXcGskyIkag_IU,2601
|
366
|
+
inspect_ai/_view/www/src/app/usage/TokenTable.module.css,sha256=VkwYeWCKK3frYZpaukYbYoPAqeE87xJ27q6m5iVQxCs,193
|
367
|
+
inspect_ai/_view/www/src/app/usage/TokenTable.tsx,sha256=Gvn8_v1XDyRVV6w5JvcopgskRuawIyHYFuA4MxKVTBg,1844
|
368
|
+
inspect_ai/_view/www/src/app/usage/UsageCard.module.css,sha256=YehyCCKrQKXYWJb7JkqMjyBofG0-b5vFDXsApqEITSs,266
|
369
|
+
inspect_ai/_view/www/src/app/usage/UsageCard.tsx,sha256=KLwfynSoXTh1ROsO_DNIpF0VL5VXdvS0gp2vNZs94iw,793
|
365
370
|
inspect_ai/_view/www/src/client/api/api-browser.ts,sha256=pSDuxCPSb5dblfKKdhGWG3fQLoZEIn2gu8Cntxu6PEo,7234
|
366
371
|
inspect_ai/_view/www/src/client/api/api-http.ts,sha256=p6tfSOvC-3jIZs-lsf2ZidswPjAXbR1K3gV_8WukNO0,6272
|
367
372
|
inspect_ai/_view/www/src/client/api/api-shared.ts,sha256=F0qCU97BN8p4DjsdK62hwoRSlcJUahCY--WyacbMRz0,1524
|
@@ -376,7 +381,7 @@ inspect_ai/_view/www/src/client/storage/index.ts,sha256=7al8eAsanynNAWazurfZmken
|
|
376
381
|
inspect_ai/_view/www/src/components/AnsiDisplay.css,sha256=PofszdiHGX6mNZIJ401_gPpBwfU8-zvmpM9deC1wJJM,1027
|
377
382
|
inspect_ai/_view/www/src/components/AnsiDisplay.tsx,sha256=x-EP2SmnnqkdFacKpo-cjnNaZt-n8mdM6415ELVPYHI,4967
|
378
383
|
inspect_ai/_view/www/src/components/AsciinemaPlayer.tsx,sha256=Sg90x9umybdujR5l6AudoNgbeKTo3Q2o42MhtoY4c8o,1511
|
379
|
-
inspect_ai/_view/www/src/components/Card.css,sha256=
|
384
|
+
inspect_ai/_view/www/src/components/Card.css,sha256=H6NNVyYzU-mlVfUdowW7gpAynIBMVFuVP1kE9JBmtAc,1251
|
380
385
|
inspect_ai/_view/www/src/components/Card.tsx,sha256=__sjiMMfrJmJmBTS9HuiAxgWKVvZg2zzn3F5lNwjbHs,2488
|
381
386
|
inspect_ai/_view/www/src/components/CopyButton.module.css,sha256=5Bmo6-nMBnjWhcMU9Val3WP-v3oMjqtLWrqL2NmANwc,163
|
382
387
|
inspect_ai/_view/www/src/components/CopyButton.tsx,sha256=6ZOKfgOhPjWhY0bNG5TM9gKttLpgmSSfwSB3rB07biA,1338
|
@@ -459,6 +464,7 @@ inspect_ai/_view/www/src/utils/http.ts,sha256=bHOv920oFymmUJqDMjSaDRCAel3uvRBZFc
|
|
459
464
|
inspect_ai/_view/www/src/utils/json-worker.ts,sha256=7_a1hkdf3ayHDPzOoTAHIex0Rr3nIEBzfaCx44Ab3CQ,45220
|
460
465
|
inspect_ai/_view/www/src/utils/json.ts,sha256=tD4qnoHPB4bky08gHLgtaAMEcYvplqAQtg-173pwYp0,495
|
461
466
|
inspect_ai/_view/www/src/utils/logger.ts,sha256=IInCznQrqwe2Zs33-zMXw7Vb-NW6zqEAaAMvW7cD05s,1610
|
467
|
+
inspect_ai/_view/www/src/utils/numeric.ts,sha256=9h7edjfH_8K_b74D7k3ntW3SjKTEs5VUs5o5_Yf__To,265
|
462
468
|
inspect_ai/_view/www/src/utils/path.ts,sha256=jAG4zQvFxrZNuAnukB09Ro2IP7ML4BngKNZ-yn0EKrw,944
|
463
469
|
inspect_ai/_view/www/src/utils/polling.ts,sha256=ycgNsK89XyRD0VPHvOkGqSd16o6cgcRxPVoE46DF8ug,2206
|
464
470
|
inspect_ai/_view/www/src/utils/print.ts,sha256=KAJ4eAQwGql1qy7Ps5wDgPYSn4qrLzP0djFlS5As2U0,2693
|
@@ -469,13 +475,13 @@ inspect_ai/_view/www/src/utils/type.ts,sha256=6ka6iba_VihY9XzvCbrx8ep7Run4_gGGta
|
|
469
475
|
inspect_ai/_view/www/src/utils/uri.ts,sha256=dW8hj4GJnQWpuwgOsLb77Gb4AsUqUkh6OZ2XGsheUpE,1039
|
470
476
|
inspect_ai/_view/www/src/utils/vscode.ts,sha256=BqhDJfud--b3cIf-Q8pnx_u_4GjW7kOQmnv0FdM_JY4,1229
|
471
477
|
inspect_ai/agent/__init__.py,sha256=nzL9TPAARSJVZRPogWHxZ-qJriXBGmFUM9DV4NRi21o,749
|
472
|
-
inspect_ai/agent/_agent.py,sha256=
|
473
|
-
inspect_ai/agent/_as_solver.py,sha256=
|
474
|
-
inspect_ai/agent/_as_tool.py,sha256
|
478
|
+
inspect_ai/agent/_agent.py,sha256=cXsm8ShNpneIwPZ0R-AyylWATaNlwqYiDV2yjmrq5ys,8453
|
479
|
+
inspect_ai/agent/_as_solver.py,sha256=cqw8Huerh-6KmWUiSRKVT1yQkXWmRelW_FCCuysa6sQ,2865
|
480
|
+
inspect_ai/agent/_as_tool.py,sha256=f6nvNXik6D02wVv9CgfYSirP97Fs4dGCotRqnCNJoq0,4805
|
475
481
|
inspect_ai/agent/_filter.py,sha256=qnT0HbT4edpDi0MwXY3Q3It2pzNRkTRXZDOqfCwMY6M,1234
|
476
|
-
inspect_ai/agent/_handoff.py,sha256=
|
482
|
+
inspect_ai/agent/_handoff.py,sha256=tL5LhjkAH6kZTDjr9RKTPJ7p0kVJFay2osIEWZKqkg0,3655
|
477
483
|
inspect_ai/agent/_react.py,sha256=9FmTDQF2n5WRkwQQ4QfpGgZEJ17iEeYgvxLqmQNORJI,13971
|
478
|
-
inspect_ai/agent/_run.py,sha256=
|
484
|
+
inspect_ai/agent/_run.py,sha256=E4GKV0jRKb2KWW96OrKQvgeB_vxw6LCSqq4t864nzbg,1634
|
479
485
|
inspect_ai/agent/_types.py,sha256=1rZkwa2bWXdmzEKvNnFpaIJ5EPqStG5mdI1owlj3jBc,3779
|
480
486
|
inspect_ai/agent/_bridge/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
481
487
|
inspect_ai/agent/_bridge/bridge.py,sha256=Qk1z54vSZvFZMmFMOvopwY6rhFxHmJwOipZ_yVsbryU,3465
|
@@ -524,47 +530,48 @@ inspect_ai/dataset/_sources/file.py,sha256=x1ogTSaTROpvhijjcuRI0HE_8JHIBPaS32McV
|
|
524
530
|
inspect_ai/dataset/_sources/hf.py,sha256=Llys1briOBKod-PkuWWPhJe5P5475TdT4R3DG7IB7Lg,5197
|
525
531
|
inspect_ai/dataset/_sources/json.py,sha256=iq6u_PlslruLgT6NwfHFoBwXeB11wkl8h_qrno1DW4Y,3882
|
526
532
|
inspect_ai/dataset/_sources/util.py,sha256=RlpQ4nRtcL4TiQMMlENEy3-psxAc8sUqCIeLBcVKD9I,3174
|
527
|
-
inspect_ai/log/__init__.py,sha256=
|
533
|
+
inspect_ai/log/__init__.py,sha256=ZB_tovvz-lH5zYX85HqOB-yYtJ9IUE6ti0mnyBzDjWQ,2337
|
528
534
|
inspect_ai/log/_bundle.py,sha256=5Uy-s64_SFokZ7WRzti9mD7yoKrd2sOzdvqKyahoiC4,8045
|
529
535
|
inspect_ai/log/_condense.py,sha256=OedMphK5Q2YPuY1cnoAM7tGsyVIU6Kwrv3oIeb3dFmY,10881
|
530
536
|
inspect_ai/log/_convert.py,sha256=qn6q10Um2XV7dnK4nQargANa0bz6RFJPmaEMINv38cs,3467
|
531
|
-
inspect_ai/log/_file.py,sha256=
|
532
|
-
inspect_ai/log/_log.py,sha256=
|
537
|
+
inspect_ai/log/_file.py,sha256=efEgQny7_Mm0vbIeDwyTMf11F9JlYTuGuwIcguAPIKM,19368
|
538
|
+
inspect_ai/log/_log.py,sha256=tRCEta0XZfgfpNsaJc5FA67I6f7ZS317ErMvB_R0HfQ,29182
|
533
539
|
inspect_ai/log/_message.py,sha256=QofM_JZF_x3k_5ta1uQzoN_VnMoUhXFnqWurIn9FXOY,1999
|
534
540
|
inspect_ai/log/_model.py,sha256=8tEhFZc1tBFgA6A_spXTqTBdvbzZP5t7ul7DiloHRWk,1698
|
535
541
|
inspect_ai/log/_retry.py,sha256=e7a2hjl3Ncl8b8sU7CsDpvK8DV0b1uSRLeokRX1mt34,2109
|
536
|
-
inspect_ai/log/_samples.py,sha256=
|
537
|
-
inspect_ai/log/_transcript.py,sha256=
|
538
|
-
inspect_ai/log/
|
542
|
+
inspect_ai/log/_samples.py,sha256=Em-90MCLvRp101aAyTcjAMDt-c5joAhSEZC7B8DHZ2M,4879
|
543
|
+
inspect_ai/log/_transcript.py,sha256=WkSDnkphdexV3jM72xj04G_SH2HWZWvx9Ewm51LyT0M,15720
|
544
|
+
inspect_ai/log/_util.py,sha256=j7jeqDendiCt12U_iaPQj8fLgTA44pk04ZM1tGQdau4,1699
|
545
|
+
inspect_ai/log/_recorders/__init__.py,sha256=qMm2y1HOzS499ZTXHOQExSN8PJ-I3LnH35icbP2m4VU,412
|
539
546
|
inspect_ai/log/_recorders/create.py,sha256=WB-fms0dBDHlTtTa_a_r0fFc6UPRvQZKZT7d_Inp-EU,1103
|
540
|
-
inspect_ai/log/_recorders/eval.py,sha256=
|
541
|
-
inspect_ai/log/_recorders/file.py,sha256=
|
547
|
+
inspect_ai/log/_recorders/eval.py,sha256=tPO0Jh56d4VOPjjqCl1mHEQEkpdfhcC2rvA6BAdWedY,15972
|
548
|
+
inspect_ai/log/_recorders/file.py,sha256=jPEEg0EKg3FOk_F_BPI75dfP868w8pidQIK5Re6f9U4,3881
|
542
549
|
inspect_ai/log/_recorders/json.py,sha256=sF4cc-_TrUgRxngHwj0p7Rsjy67XTbWSH_SRCEqz9RQ,8782
|
543
|
-
inspect_ai/log/_recorders/recorder.py,sha256=
|
544
|
-
inspect_ai/log/_recorders/types.py,sha256=
|
550
|
+
inspect_ai/log/_recorders/recorder.py,sha256=Fn4lrfUJmxIhxy3hhQzpDjVABtCXQ7wtT0vRykzQ0YA,1787
|
551
|
+
inspect_ai/log/_recorders/types.py,sha256=cV7eFpXsbmXVw4r7xw1RdJC6Jltvw9xLXYPbFsYW7Oc,159
|
545
552
|
inspect_ai/log/_recorders/buffer/__init__.py,sha256=6DsRdnNl-ic-xJmnBE5i45ZP3eB4yAta9wxi5WFcbqc,367
|
546
553
|
inspect_ai/log/_recorders/buffer/buffer.py,sha256=rtLvaX7nSqNrWb-3CeSaOHwJgF1CzRgXFT_I1dDkM1k,945
|
547
|
-
inspect_ai/log/_recorders/buffer/database.py,sha256=
|
548
|
-
inspect_ai/log/_recorders/buffer/filestore.py,sha256=
|
549
|
-
inspect_ai/log/_recorders/buffer/types.py,sha256=
|
550
|
-
inspect_ai/model/__init__.py,sha256=
|
554
|
+
inspect_ai/log/_recorders/buffer/database.py,sha256=e7q5xGKj2Lj3ytO-qXPNDktp53SVkqub8Bs8DJvrvJs,22451
|
555
|
+
inspect_ai/log/_recorders/buffer/filestore.py,sha256=0RYD7VR61XoM9Gx8wpqQ8utNqGbrNrJFuHYgLrHa8So,8282
|
556
|
+
inspect_ai/log/_recorders/buffer/types.py,sha256=1cyKA_vrXCh2Q560qDSwLSgR7Mx45R2g4-8c76PontE,2054
|
557
|
+
inspect_ai/model/__init__.py,sha256=VSHQ_DpflCv1LD3BVoSGQKHpYjAJ317eIT-k6T4iKEw,2524
|
551
558
|
inspect_ai/model/_cache.py,sha256=Bl6WS9b1kJRVsGK0h7Fd1-mDAbrlxvNXMPK30P3aMuM,13736
|
552
|
-
inspect_ai/model/_call_tools.py,sha256=
|
559
|
+
inspect_ai/model/_call_tools.py,sha256=iPzFszeOZL92LoCi9xDZFdjBXwoyU1XkiY_Kp26ajZs,29716
|
553
560
|
inspect_ai/model/_chat_message.py,sha256=Kz933i25M175O4SoYTvJMwt4ELTiFaohfaDgK0myFyw,7417
|
554
561
|
inspect_ai/model/_conversation.py,sha256=J4zxb8mJdcpV5zLEDYS-ikQckONeaUZrqNReLLruUOE,374
|
555
562
|
inspect_ai/model/_display.py,sha256=0wb9tV4PItvwgUpqpxLCL60oWlg4lT1nVA6GKJV3rcU,3090
|
556
|
-
inspect_ai/model/_generate_config.py,sha256=
|
557
|
-
inspect_ai/model/_model.py,sha256=
|
563
|
+
inspect_ai/model/_generate_config.py,sha256=17QzzPlLvAxmC7uOPAikTaJoNecvZn_7xTgXBmyJo1k,11961
|
564
|
+
inspect_ai/model/_model.py,sha256=FQh7kZnNY4Bp9qyW231jiiYDd-rdVPZMsydg9EtyDdU,52833
|
558
565
|
inspect_ai/model/_model_call.py,sha256=VJ8wnl9Y81JaiClBYM8eyt1jVb3n-yc6Dd88ofRiJDc,2234
|
559
|
-
inspect_ai/model/_model_output.py,sha256=
|
560
|
-
inspect_ai/model/_openai.py,sha256=
|
566
|
+
inspect_ai/model/_model_output.py,sha256=1CLAt0JKsv9NYbN93-i5Fl0K035cxoO3bP_q19234Y8,8812
|
567
|
+
inspect_ai/model/_openai.py,sha256=lxLskiaaL0vopErvm-CQaoMGTJz3E_2WPezqYNAE0aU,24439
|
561
568
|
inspect_ai/model/_openai_computer_use.py,sha256=vbKkYLhqNuX16zuWfg5MaGp9H8URrPcLhKQ1pDsZtPo,5943
|
562
|
-
inspect_ai/model/_openai_responses.py,sha256
|
569
|
+
inspect_ai/model/_openai_responses.py,sha256=PW17R217NBy0exq4LLfM-eI0GTcG4gm6cxjVG9Uy3d8,22528
|
563
570
|
inspect_ai/model/_reasoning.py,sha256=qmR8WT6t_cb7NIsJOQHPyFZh2eLV0HmYxKo2vtvteQ4,929
|
564
571
|
inspect_ai/model/_registry.py,sha256=Cr2y32EqLnOqLbSWoXHVK4ivTTzCUhJuACxoTyPt8kY,2032
|
565
572
|
inspect_ai/model/_render.py,sha256=rWypNUjgrH4NGp0r-ESAze9gZz7lYNjheEP438vRYZE,922
|
566
573
|
inspect_ai/model/_trim.py,sha256=rTgxurrmX_kJVfGtcjD7yuawjBqQIW6a8TxevD5o1No,3087
|
567
|
-
inspect_ai/model/_providers/anthropic.py,sha256=
|
574
|
+
inspect_ai/model/_providers/anthropic.py,sha256=tCrgapoCFOHBbxemqhb2eu3IcAiiS7mHaNKk0i8soIs,33861
|
568
575
|
inspect_ai/model/_providers/azureai.py,sha256=uXED_qmeyW1XAGBosbG7PJNk833RIeokKX3l_8O9gYA,14341
|
569
576
|
inspect_ai/model/_providers/bedrock.py,sha256=G252v6gUXtT56M4JaLLY7tEw2AJVQFucjeFgv0okhgo,23999
|
570
577
|
inspect_ai/model/_providers/cloudflare.py,sha256=9yHfA5qbKWjzOfOzCJ_u8CZsH_U7AolAWLxvLBXKrhM,2375
|
@@ -579,13 +586,14 @@ inspect_ai/model/_providers/none.py,sha256=6qLbZpHSoEZaaxFO7luieFjqig2Ju8Fu00DlR
|
|
579
586
|
inspect_ai/model/_providers/ollama.py,sha256=eWhsVoZ8k_3zYpdDoZWcPN9rGly6Ha4O49N99EJfycs,591
|
580
587
|
inspect_ai/model/_providers/openai.py,sha256=QC0_Q8QbSXSNln02_c6qjmruOU3bkHGEapo1SF3lTzA,13475
|
581
588
|
inspect_ai/model/_providers/openai_compatible.py,sha256=OO7VoZA8RQb6y6iaRXMHabCOG4wWQfhsxJLD5wB38co,6592
|
582
|
-
inspect_ai/model/_providers/openai_o1.py,sha256=
|
589
|
+
inspect_ai/model/_providers/openai_o1.py,sha256=ahdXt2TFtPTdDvSGVQw7EaVindfbFbY2pLZrrB45rFg,13305
|
583
590
|
inspect_ai/model/_providers/openai_responses.py,sha256=hxHlMsHiTCs_dhmhRswKPOVvlmWjpW1cmXWfAMdFe6c,6720
|
584
591
|
inspect_ai/model/_providers/openrouter.py,sha256=sm-XlzcevoZfoR4C00jCxlfeL2NlnPVpJJA1mFFgkgw,4990
|
585
|
-
inspect_ai/model/_providers/providers.py,sha256=
|
592
|
+
inspect_ai/model/_providers/providers.py,sha256=hdtgUsYJ5sVrTuRa2bpiK7ZOAz0hb-pHYKVAk37_iDU,6591
|
593
|
+
inspect_ai/model/_providers/sglang.py,sha256=O_zdyFlyWSfalKhPw9XOCxC__CF9CPAMdCDFmWhk4fA,8642
|
586
594
|
inspect_ai/model/_providers/together.py,sha256=EUNag5nraqo3GvzwKB1jukhZj-GACxsCGPrBC4VR2MU,9786
|
587
595
|
inspect_ai/model/_providers/vertex.py,sha256=60W7kgoA83GtKdMeJgNU2IAw0N0wTscg4YCcMPu2bwo,17185
|
588
|
-
inspect_ai/model/_providers/vllm.py,sha256=
|
596
|
+
inspect_ai/model/_providers/vllm.py,sha256=qpy3HYjemmPS7GUY_YVm_rUUx1ipz1i5iZPGzao12Q8,8779
|
589
597
|
inspect_ai/model/_providers/util/__init__.py,sha256=d4T_qvXihTRd1zmQkNE3xUBlHCX8tOIbRK19EwU0fTs,717
|
590
598
|
inspect_ai/model/_providers/util/chatapi.py,sha256=yCRdk2ByTf6vYl7WcGTYTbEp5ERlf_2cix7wUvTUxpY,3518
|
591
599
|
inspect_ai/model/_providers/util/hf_handler.py,sha256=Ci9I5p1Y3WD3Y4kzoicYcF-n-ZJxOfW5q_181o4Vce4,7688
|
@@ -614,92 +622,65 @@ inspect_ai/scorer/_reducer/__init__.py,sha256=ntoSXbbBia6gN3Uk3tQFQ8lSt8IBSRvwM5
|
|
614
622
|
inspect_ai/scorer/_reducer/reducer.py,sha256=5EKER24GHJnodE24C_quRrmbWpL56AeEovoLe5W9XKA,11859
|
615
623
|
inspect_ai/scorer/_reducer/registry.py,sha256=aB1fyv8DTiwfnleGc7_zXnGI9krfmWyaXx-FJfA7zw4,5349
|
616
624
|
inspect_ai/scorer/_reducer/types.py,sha256=R4ALTh4fsjzSsHIKY3ItWylQiRyYAtdGnxCvisYlync,462
|
617
|
-
inspect_ai/solver/__init__.py,sha256=
|
618
|
-
inspect_ai/solver/_basic_agent.py,sha256=
|
625
|
+
inspect_ai/solver/__init__.py,sha256=0Vha5MQ_c9eqX0CmrtVQGQRu4QXRDrnctF-v9Vhhgg0,3600
|
626
|
+
inspect_ai/solver/_basic_agent.py,sha256=uZr2DyG06pkr96XJnz1MmleZzEWk1h6Wd_OZcZ0qVO4,10572
|
619
627
|
inspect_ai/solver/_bridge.py,sha256=cXZ-zhFivjHR51awXmVB8KPLUnvbKrw3sTRP3Qjwkn4,876
|
620
628
|
inspect_ai/solver/_chain.py,sha256=ksXdJx_PVsYCPZZiYeUbD90qxbkbCkqbDd3o20bh9_w,2449
|
621
629
|
inspect_ai/solver/_critique.py,sha256=8GhB9OEsDCOqS6_cHAaTWNNeAimjV3JM_xXr8k1n3XQ,3457
|
622
630
|
inspect_ai/solver/_fork.py,sha256=2dh8wyy8kAcbsBoQtYS-wY0g8Cb1GEIA-M_sJyGZLW0,2970
|
623
631
|
inspect_ai/solver/_human_agent.py,sha256=QDY4GkPOyCQXm3zEmS0zisLAb8xKPBi_TcvtMP6Oofc,1903
|
624
|
-
inspect_ai/solver/_limit.py,sha256=QKcfY0TVV1x9YhHbJzwmrFBh-TSSaUjnXo36GaKTj8U,1071
|
625
632
|
inspect_ai/solver/_multiple_choice.py,sha256=uYr3E6LA6Gv5ktqdmQJX6rYxbc6maTy3ZjyZXabdBug,11298
|
626
633
|
inspect_ai/solver/_plan.py,sha256=Mh_qQCe0rDsg82uD7H6Uq-pes93ftVDme7-SbTa7drw,7190
|
627
634
|
inspect_ai/solver/_prompt.py,sha256=n2gkRUMSRKViDBL4WtepNoMx7zidIkQgOHLGllP6WVo,4955
|
628
635
|
inspect_ai/solver/_run.py,sha256=k-IYoFpyNq8-HTFgQck4Akvs3OtopiL4qRWj8_yLhvY,1763
|
629
636
|
inspect_ai/solver/_solver.py,sha256=UJ2CvmJr74n65x4xipZTxNzGfvUyuTHnnRSY0QqNo5I,9563
|
630
|
-
inspect_ai/solver/_task_state.py,sha256=
|
637
|
+
inspect_ai/solver/_task_state.py,sha256=Ceub_rcuJ-Xtm40mzHtgFJPIX3nmDGwx6IEejCik_w8,14598
|
631
638
|
inspect_ai/solver/_transcript.py,sha256=gkH9CC5gYbz7ZzrFD0TkjtKYjWxQP5EthJOkq8NXDOc,1049
|
632
639
|
inspect_ai/solver/_use_tools.py,sha256=VmhCjKpkWgifOS20toBcK2bFDmyPqfxkBvcHs_-nv58,2235
|
633
640
|
inspect_ai/solver/_util.py,sha256=pthrf-CzC6FnQYSUFLXTYM4wFEJptZrh5POTmV-Jtow,446
|
634
641
|
inspect_ai/tool/__init__.py,sha256=oMfiZ-Z8I2pYRI70w-QwuBx8Cg2Y54LarMxkbEx0EUM,2762
|
635
|
-
inspect_ai/tool/_json_rpc_helpers.py,sha256=
|
642
|
+
inspect_ai/tool/_json_rpc_helpers.py,sha256=vxrzgwdjOiTjQZAbk9J2AUSr040r-wbzifGO5R9WIbQ,10288
|
636
643
|
inspect_ai/tool/_tool.py,sha256=7DvNHXIn7GOpF_-rxNhH63cFQ_4zm3km6_bcdogAyJQ,7319
|
637
|
-
inspect_ai/tool/_tool_call.py,sha256
|
644
|
+
inspect_ai/tool/_tool_call.py,sha256=-dijpn9At91gobLc5t9NTPYrzagiAUJmYF_BY9IdgZA,2887
|
638
645
|
inspect_ai/tool/_tool_choice.py,sha256=L8QNmcnSnilzKg2HU3G65W5aYaSngO09z4FQ0fQlATM,496
|
639
646
|
inspect_ai/tool/_tool_def.py,sha256=GMNsU2ytGu2EKDmDJXwazhUJYYk8mt6kIoC6hX2cL90,8954
|
640
647
|
inspect_ai/tool/_tool_description.py,sha256=SZTQzehReNNKwQ0iUL6v4pPfEptgf3UOP4J888JV18M,524
|
641
648
|
inspect_ai/tool/_tool_info.py,sha256=ivRrJVo1_iUkdSF0cD0ITmZyMnRhI0ouKUFRtKKTZZY,4905
|
642
649
|
inspect_ai/tool/_tool_params.py,sha256=xcVun4guba-st3onDtDar-wOeceAXiWwS5uOkigsFfo,745
|
643
|
-
inspect_ai/tool/_tool_support_helpers.py,sha256=
|
650
|
+
inspect_ai/tool/_tool_support_helpers.py,sha256=f3Vz2srBnvykYmxOSOnyEd552dkuQ-bgncNaCQqFRQA,7498
|
644
651
|
inspect_ai/tool/_tool_transcript.py,sha256=rMibJoBN5Nn41RwInqk45h9RDPxZGu81saDf4SkpqTs,904
|
645
652
|
inspect_ai/tool/_tool_with.py,sha256=NhR_yiNX98uVZo3r0HDVJCbh_6v0k70OcEOPK0dPMk0,2704
|
646
653
|
inspect_ai/tool/beta.py,sha256=KQYntN2MLiIHp4Gf4GXv3QO3aYHBBaP-npkluTT-aDM,153
|
647
654
|
inspect_ai/tool/_mcp/__init__.py,sha256=vqtlBle1T_jlRQPvLKJbLgW5h_I0Ee33nDBI-rCtIeA,314
|
648
655
|
inspect_ai/tool/_mcp/_context.py,sha256=UgBSTCzHUOaB-Xu5HX5uDhkiRTTNcwqqDmmjgPxskUY,405
|
649
|
-
inspect_ai/tool/_mcp/_mcp.py,sha256=
|
650
|
-
inspect_ai/tool/_mcp/_sandbox.py,sha256
|
656
|
+
inspect_ai/tool/_mcp/_mcp.py,sha256=lHjz9QwPnBQkqIbBm98kL4BmUAj2oO12KrcCYonLvwk,10525
|
657
|
+
inspect_ai/tool/_mcp/_sandbox.py,sha256=eM-B9x3NQfAoa7mw67mPdlLqwMATtvYtP187MJdxw1I,4268
|
651
658
|
inspect_ai/tool/_mcp/_types.py,sha256=RT9ZRugYR3ArKe54_fuYxeenlWa_os0_DYadVIJEHlM,769
|
652
659
|
inspect_ai/tool/_mcp/connection.py,sha256=c1VRVtN90f2KptKCXlQ6fAX2Bxx8HXu3_ZvYmt_35dw,1901
|
653
660
|
inspect_ai/tool/_mcp/sampling.py,sha256=YDfrYj6GAec4R3JkQpUc_fPROQUpRARvbUPq7FVKSQ0,4001
|
654
|
-
inspect_ai/tool/_mcp/server.py,sha256=
|
661
|
+
inspect_ai/tool/_mcp/server.py,sha256=JrgkB4pv7hex8WeMYF262zXkqkxsLXgMy3Oe3O7S6Bo,3402
|
655
662
|
inspect_ai/tool/_mcp/tools.py,sha256=nApVwogA_H4zUXQ2CptA2hmq0ooytcf3-iTAvl1AGF4,988
|
656
663
|
inspect_ai/tool/_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
657
|
-
inspect_ai/tool/_tools/_bash_session.py,sha256=
|
664
|
+
inspect_ai/tool/_tools/_bash_session.py,sha256=9azKZMBrChbFJFB3IIz41L2XeIEgcakPsDQ7BZQ6lxo,9131
|
658
665
|
inspect_ai/tool/_tools/_execute.py,sha256=SZdtVxxGoQNErWFtYaJgfTtLsZbBP28lnY112mt-VWQ,3435
|
659
|
-
inspect_ai/tool/_tools/_text_editor.py,sha256=
|
666
|
+
inspect_ai/tool/_tools/_text_editor.py,sha256=15p-yPUlRBAIcd6afMAcHNWXoF-xkomvlRa7VoL3vdY,4042
|
660
667
|
inspect_ai/tool/_tools/_think.py,sha256=bPNo1BtuUiiOpotYgQnrXM8Q87OVU8r9iO-huSnSGWs,1820
|
661
668
|
inspect_ai/tool/_tools/_web_search.py,sha256=GYkGasfmZWG3TY1XqBfa6yJnG7ysPtdGCVmPUJHQRSM,8012
|
662
669
|
inspect_ai/tool/_tools/_computer/__init__.py,sha256=fq4BSM4aDhtEtE4279xm47NiO6vyiZHhhw7cq-azFzk,56
|
663
670
|
inspect_ai/tool/_tools/_computer/_common.py,sha256=vdteXzoE4hKqDdTAV3ED2nLzVBLM7oBOCbm1brz-B2o,6403
|
664
|
-
inspect_ai/tool/_tools/_computer/_computer.py,sha256=
|
665
|
-
inspect_ai/tool/_tools/_computer/test_args.py,sha256=tgySEFbsI-jPK9LA75ickN3qI_bLev81XGaprgoKL5k,4234
|
666
|
-
inspect_ai/tool/_tools/_computer/_resources/Dockerfile,sha256=DA1ZzOqO3vEySSfoDV9bCBl_iVmpzhiNz_s1Oyd1gO0,3568
|
667
|
-
inspect_ai/tool/_tools/_computer/_resources/README.md,sha256=5JDNaGJ-Ebq6Io57ANFIqgjPoh11aGDSrrgrhyfiqxU,1657
|
668
|
-
inspect_ai/tool/_tools/_computer/_resources/entrypoint/entrypoint.sh,sha256=IR8sE-b22YO7lwzdDiyjhLTJWIf0X__wA8WE98dwkwM,394
|
669
|
-
inspect_ai/tool/_tools/_computer/_resources/entrypoint/novnc_startup.sh,sha256=PAbMgSvprnLvbj8A8a59o_yDfm-jiCXxBxsPb004Bf8,383
|
670
|
-
inspect_ai/tool/_tools/_computer/_resources/entrypoint/x11vnc_startup.sh,sha256=JFcW46u2ioDpGLptmUOMaqtt2YvuFhCTB42cyWRmo8c,993
|
671
|
-
inspect_ai/tool/_tools/_computer/_resources/entrypoint/xfce_startup.sh,sha256=w_27I4o7usP8SUMzP3lrXeNuISslyy1aywkgpm_2l4Q,209
|
672
|
-
inspect_ai/tool/_tools/_computer/_resources/entrypoint/xvfb_startup.sh,sha256=hd2naWFFpm3S0cWZ6Lhlpm6KD3L6-g8Zw2dgxchXMUg,1118
|
673
|
-
inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/settings.json,sha256=lgMzLKdThcGlGRlqgmJFBismaGtVB7Nx10hgDsS5VaA,230
|
674
|
-
inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb,sha256=IywnS_kbluMmzEigds2Leg1r_uoIQEDX1eWKtYy4fQc,155648
|
675
|
-
inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml,sha256=dIUGsB1BFK37S1ahbyhCiFsyGlGS4yT_paViPwXBW_g,2725
|
676
|
-
inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml,sha256=jNgaNqBCngQlykTlLhmmdc_LLOrH2AMk7pUpLkbCjMY,312
|
677
|
-
inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml,sha256=6j7UX8YIffTEpcelpjd-gNtO5rtNCM5roI59hkBEK9o,5518
|
678
|
-
inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Firefox Web Browser.desktop,sha256=Odm77RSEiTlMx7cY8odUCO2a8fvIUwHcpEUanpHzbL0,181
|
679
|
-
inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Terminal.desktop,sha256=Kq3CHhYP-YjwEIUS90TJVib_LoQ-9Tq0-3VIGYj6urM,195
|
680
|
-
inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Visual Studio Code.desktop,sha256=jYYu8pcdIhFCC_3cEgO-0z0A6eQO2WQkIVViebSBbpA,184
|
681
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/.pylintrc,sha256=29ApBnQCmHnovZJxSpkVcoGBaMfnEXSK8WVi38s5M8Y,199
|
682
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
683
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/_args.py,sha256=-Njv3RPaz7ZD3HJEERHwBrhwI4C5jQeXj_cFZNq9Lsc,2467
|
684
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/_constants.py,sha256=u0exml6Xpe-__vWDWQvsIuxg6h3Ja0e1fLHR1bk5oPo,375
|
685
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/_logger.py,sha256=owkNYe9lyShTLXoMqhK4Qtzacnt5FvSxN8Wqf2MO5XM,652
|
686
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/_run.py,sha256=yhg1LCWptRhK34tWfyvhm8oTkcnEesRd9ki_a4-o8As,1611
|
687
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/_tool_result.py,sha256=cd6JNFhwyI4yDlDTPFqCTB1mV8cqvDR1TBvlOe5qoSg,1131
|
688
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/_x11_client.py,sha256=miWscVT7o2Derme4EnvTQy3ARAgskj-XMmATd4Sp5fQ,12424
|
689
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/computer_tool.py,sha256=aZywnPv6QJWVUBD4jNERGLxI6aHfKl9u5m6BrgrtNYw,4704
|
690
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/pyproject.toml,sha256=MCZ84Su8yT5GniEM5Iq1onvKHfdND4jscn6jqPt9SMA,1441
|
691
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
692
|
-
inspect_ai/tool/_tools/_computer/_resources/tool/.vscode/settings.json,sha256=cfeAnDRwpgensIPY5LeICNh5P-o5Hw951sdmHtqI_LU,151
|
671
|
+
inspect_ai/tool/_tools/_computer/_computer.py,sha256=REkNcnNt4PBkoyArWDpAdP4PLE_b7Qom0dBmI8zu-_w,10198
|
693
672
|
inspect_ai/tool/_tools/_web_browser/__init__.py,sha256=dnnzy96pcvMvxD1OGg4hG-doL7Ru7WH0i25Sb9VIXwE,65
|
694
673
|
inspect_ai/tool/_tools/_web_browser/_back_compat.py,sha256=oz5xt0_O1LpIXln1LIpypqealT0H1E4wBb_FIh8o6nA,5531
|
695
|
-
inspect_ai/tool/_tools/_web_browser/_web_browser.py,sha256=
|
696
|
-
inspect_ai/util/__init__.py,sha256
|
674
|
+
inspect_ai/tool/_tools/_web_browser/_web_browser.py,sha256=jdmfTFK4jr7PWnJ9XEu4NLveLg6Yid4v457NfWQEUqE,16292
|
675
|
+
inspect_ai/util/__init__.py,sha256=o2VuRESMikeCqqt-GYjBAhkEYZ5w9CHiOb4AA6xTz90,1916
|
697
676
|
inspect_ai/util/_anyio.py,sha256=Gy0Y6pua06x3_A9ankFVAbGpb0zydO_u0XV-xE1WJN4,1307
|
698
677
|
inspect_ai/util/_concurrency.py,sha256=mmXAfizGQggMIeppcMNxtnfcOeFDz0SU2S1ICKTWDLo,2962
|
699
678
|
inspect_ai/util/_console.py,sha256=V1XkIoKcNZo0SgRUOv15zJAWz6-zV6267hC4Oldj8oY,1237
|
700
679
|
inspect_ai/util/_conversation.py,sha256=KzqvKfj1tB14cgARZjYyIVG2EpuE-EZKqLGAPIXv1Xs,784
|
701
680
|
inspect_ai/util/_display.py,sha256=cjSfvs_HXHUd3uYqHY4sTPpOcvrWdlGZm2YskfW49lM,2214
|
702
681
|
inspect_ai/util/_json.py,sha256=f5c5V8Dlf7xMnCK2MM9D09GHL_V4McGXmt9RBxRjD_0,6825
|
682
|
+
inspect_ai/util/_limit.py,sha256=pmQ7Eg0XqUy-GYBAg6MLNHQ-tJMIAT-OiZGqEMYngj4,13032
|
683
|
+
inspect_ai/util/_limited_conversation.py,sha256=rfM45soaVmtGrYTaUk_ibZxTe8rbP5bzGlIWJCYBWM8,1997
|
703
684
|
inspect_ai/util/_panel.py,sha256=MdZxOt0F01ddn_NsRfwn0es6UjQasK1_EKIQ6jtQyG8,3124
|
704
685
|
inspect_ai/util/_resource.py,sha256=X280aW_7VCkVTGk812tuU5qnZlGM5Qt1-kANr-DaGOs,3389
|
705
686
|
inspect_ai/util/_store.py,sha256=QemJe2M-RK6zSFNcd07_92XFjvNtWKgHzBr5eT3KF1I,3786
|
@@ -724,9 +705,9 @@ inspect_ai/util/_sandbox/docker/internal.py,sha256=c8X8TLrBPOvsfnq5TkMlb_bzTALyc
|
|
724
705
|
inspect_ai/util/_sandbox/docker/prereqs.py,sha256=0j6_OauBBnVlpBleADcZavIAAQZy4WewVjbRn9c0stg,3355
|
725
706
|
inspect_ai/util/_sandbox/docker/service.py,sha256=hhHIWH1VDFLwehdGd19aUBD_VKfDO3GCPxpw1HSwVQk,2437
|
726
707
|
inspect_ai/util/_sandbox/docker/util.py,sha256=EeInihCNXgUWxaqZ4dNOJd719kXL2_jr63QCoXn68vA,3154
|
727
|
-
inspect_ai-0.3.
|
728
|
-
inspect_ai-0.3.
|
729
|
-
inspect_ai-0.3.
|
730
|
-
inspect_ai-0.3.
|
731
|
-
inspect_ai-0.3.
|
732
|
-
inspect_ai-0.3.
|
708
|
+
inspect_ai-0.3.93.dist-info/licenses/LICENSE,sha256=xZPCr8gTiFIerrA_DRpLAbw-UUftnLFsHxKeW-NTtq8,1081
|
709
|
+
inspect_ai-0.3.93.dist-info/METADATA,sha256=fAW8Ji3ZJ0umsX0Bz8vVamDdDvgI2WRoqjJQUTnjHyk,5143
|
710
|
+
inspect_ai-0.3.93.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
711
|
+
inspect_ai-0.3.93.dist-info/entry_points.txt,sha256=WGGLmzTzDWLzYfiyovSY6oEKuf-gqzSDNOb5V-hk3fM,54
|
712
|
+
inspect_ai-0.3.93.dist-info/top_level.txt,sha256=Tp3za30CHXJEKLk8xLe9qGsW4pBzJpEIOMHOHNCXiVo,11
|
713
|
+
inspect_ai-0.3.93.dist-info/RECORD,,
|
inspect_ai/solver/_limit.py
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
from typing import Literal
|
2
|
-
|
3
|
-
from ._task_state import TaskState
|
4
|
-
|
5
|
-
|
6
|
-
class SampleLimitExceededError(Exception):
|
7
|
-
"""Exception raised when a sample limit is exceeded.
|
8
|
-
|
9
|
-
Args:
|
10
|
-
type: Type of limit exceeded.
|
11
|
-
value: Value compared to
|
12
|
-
limit: Limit applied.
|
13
|
-
message (str | None): Optional. Human readable message.
|
14
|
-
"""
|
15
|
-
|
16
|
-
def __init__(
|
17
|
-
self,
|
18
|
-
type: Literal["message", "time", "working", "token", "operator", "custom"],
|
19
|
-
*,
|
20
|
-
value: int,
|
21
|
-
limit: int,
|
22
|
-
message: str | None = None,
|
23
|
-
state: TaskState | None = None,
|
24
|
-
) -> None:
|
25
|
-
self.type = type
|
26
|
-
self.value = value
|
27
|
-
self.limit = limit
|
28
|
-
self.message = f"Exceeded {type} limit: {limit:,}"
|
29
|
-
self.state = state
|
30
|
-
super().__init__(message)
|
31
|
-
|
32
|
-
def with_state(self, state: TaskState) -> "SampleLimitExceededError":
|
33
|
-
return SampleLimitExceededError(
|
34
|
-
self.type,
|
35
|
-
value=self.value,
|
36
|
-
limit=self.limit,
|
37
|
-
message=self.message,
|
38
|
-
state=state,
|
39
|
-
)
|
@@ -1,102 +0,0 @@
|
|
1
|
-
FROM docker.io/ubuntu:22.04
|
2
|
-
|
3
|
-
ENV DEBIAN_FRONTEND=noninteractive
|
4
|
-
ENV DEBIAN_PRIORITY=high
|
5
|
-
|
6
|
-
# Core/system layer
|
7
|
-
RUN apt-get update && \
|
8
|
-
apt-get -y upgrade && \
|
9
|
-
apt-get -y install \
|
10
|
-
# A virtual framebuffer for running GUI applications without a physical display.
|
11
|
-
xvfb \
|
12
|
-
# A lightweight desktop environment for UNIX-like operating systems.
|
13
|
-
xfce4 \
|
14
|
-
# The terminal emulator for the xfce4 desktop environment.
|
15
|
-
xfce4-terminal\
|
16
|
-
# A VNC server for sharing X11 desktops.
|
17
|
-
x11vnc \
|
18
|
-
# A web based VNC client
|
19
|
-
novnc \
|
20
|
-
# A WebSocket to TCP proxy/bridge for noVNC
|
21
|
-
websockify \
|
22
|
-
# The Python programming language interpreter.
|
23
|
-
python3 \
|
24
|
-
# The package installer for Python.
|
25
|
-
python3-pip \
|
26
|
-
# A command-line tool for automating X11 applications (e.g., simulating keyboard/mouse inputs).
|
27
|
-
xdotool \
|
28
|
-
# A command-line tool for taking screenshots.
|
29
|
-
scrot \
|
30
|
-
# A suite for image manipulation — needed for scaling images.
|
31
|
-
imagemagick && \
|
32
|
-
apt-get clean
|
33
|
-
|
34
|
-
# Userland apt-get'able apps
|
35
|
-
RUN apt-get install -y --no-install-recommends \
|
36
|
-
# A calculator application.
|
37
|
-
galculator && \
|
38
|
-
apt-get clean
|
39
|
-
|
40
|
-
# install Firefox
|
41
|
-
RUN apt-get install -y software-properties-common && \
|
42
|
-
add-apt-repository ppa:mozillateam/ppa && \
|
43
|
-
apt-get update && \
|
44
|
-
apt-get install -y --no-install-recommends firefox-esr && \
|
45
|
-
apt-get clean
|
46
|
-
|
47
|
-
# install VS Code
|
48
|
-
RUN apt-get install -y \
|
49
|
-
gpg \
|
50
|
-
wget \
|
51
|
-
apt-transport-https \
|
52
|
-
software-properties-common && \
|
53
|
-
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg && \
|
54
|
-
install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg && \
|
55
|
-
sh -c 'echo "deb [arch=amd64,arm64 signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list' && \
|
56
|
-
apt-get update && \
|
57
|
-
apt-get install -y code && \
|
58
|
-
apt-get clean
|
59
|
-
|
60
|
-
# configure noVNC
|
61
|
-
RUN ln -s /usr/share/novnc/vnc.html /usr/share/novnc/index.html
|
62
|
-
|
63
|
-
# configure python alias
|
64
|
-
RUN ln -s /usr/bin/python3 /usr/bin/python
|
65
|
-
|
66
|
-
|
67
|
-
# We copy requirements.txt by itself so that changes to the scripts will be in a later layer
|
68
|
-
# and we only pip install if requirements.txt changes
|
69
|
-
COPY tool/requirements.txt /opt/inspect/tool/requirements.txt
|
70
|
-
RUN cd /opt/inspect/tool && pip3 install --no-cache-dir -r requirements.txt
|
71
|
-
|
72
|
-
COPY tool/ /opt/inspect/tool
|
73
|
-
COPY entrypoint/ /opt/inspect/entrypoint
|
74
|
-
RUN chmod -R 755 /opt/inspect
|
75
|
-
|
76
|
-
# setup user
|
77
|
-
ENV USERNAME=user
|
78
|
-
ENV HOME=/home/$USERNAME
|
79
|
-
RUN useradd -m -s /bin/bash -d $HOME $USERNAME
|
80
|
-
RUN echo "${USERNAME} ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
81
|
-
USER ${USERNAME}
|
82
|
-
WORKDIR $HOME
|
83
|
-
ADD --chown=$USERNAME:$USERNAME image_home_dir/ $HOME
|
84
|
-
|
85
|
-
# configure Firefox to skip all 'first run' UI
|
86
|
-
RUN mkdir -p $HOME/.mozilla/firefox-esr/profile.default && \
|
87
|
-
echo 'user_pref("browser.startup.homepage_override.mstone", "ignore");' >> $HOME/.mozilla/firefox-esr/profile.default/user.js && \
|
88
|
-
echo 'user_pref("browser.aboutwelcome.enabled", false);' >> $HOME/.mozilla/firefox-esr/profile.default/user.js && \
|
89
|
-
echo 'user_pref("datareporting.policy.firstRunURL", "");' >> $HOME/.mozilla/firefox-esr/profile.default/user.js
|
90
|
-
|
91
|
-
EXPOSE 5900
|
92
|
-
EXPOSE 6080
|
93
|
-
|
94
|
-
ARG DISPLAY_NUM=1
|
95
|
-
ARG WIDTH=1920
|
96
|
-
ARG HEIGHT=1080
|
97
|
-
ENV DISPLAY_NUM=$DISPLAY_NUM
|
98
|
-
ENV DISPLAY=:${DISPLAY_NUM}
|
99
|
-
ENV HEIGHT=$HEIGHT
|
100
|
-
ENV WIDTH=$WIDTH
|
101
|
-
|
102
|
-
ENTRYPOINT [ "/opt/inspect/entrypoint/entrypoint.sh" ]
|
@@ -1,30 +0,0 @@
|
|
1
|
-
# About This Image
|
2
|
-
|
3
|
-
This image was inspired by Anthropic's Computer Use Demo [here](https://github.com/anthropics/anthropic-quickstarts/tree/main/computer-use-demo/image).
|
4
|
-
|
5
|
-
Its goal is to provide the minimum infrastructure to support the use of Inspect's `computer_tool` to interact with the computer via X11 and `xdotool`, while also providing observability and interaction via VNC and noVNC.
|
6
|
-
|
7
|
-
The image extends this minimal functionality by adding a few basic applications — VS Code, Firefox, XPaint, and galculator.
|
8
|
-
|
9
|
-
## Entrypoint Directory
|
10
|
-
|
11
|
-
1. **Xvfb (X Virtual Framebuffer)**
|
12
|
-
- **Script:** `xvfb_startup.sh`
|
13
|
-
- **Description:** Xvfb is a display server that implements the X11 display server protocol. It runs in memory and does not require a physical display, useful for running graphical applications in a headless environment.
|
14
|
-
|
15
|
-
1. **xfce4**
|
16
|
-
- **Script:** `xfce4_startup.sh`
|
17
|
-
- **Description:** xfce4 is a lightweight desktop environment for UNIX-like operating systems. It aims to be fast, low on system resources, and user-friendly.
|
18
|
-
|
19
|
-
1. **x11vnc**
|
20
|
-
- **Script:** `x11vnc_startup.sh`
|
21
|
-
- **Description:** x11vnc is a VNC server that allows remote access to the X11 display. It enables users to connect to the virtual display environment from a remote machine using a VNC client.
|
22
|
-
|
23
|
-
1. **noVNC**
|
24
|
-
- **Script:** `novnc_startup.sh`
|
25
|
-
- **Description:** noVNC is a VNC client that runs in a web browser. It allows users to access the virtual display environment through a web interface without needing a separate VNC client application.
|
26
|
-
|
27
|
-
## Desktop Directory
|
28
|
-
|
29
|
-
The `Desktop` directory contains launchers for VS Code, Firefox and XPaint.
|
30
|
-
|