inspect-ai 0.3.61__py3-none-any.whl → 0.3.62__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 +13 -0
- inspect_ai/_cli/view.py +4 -0
- inspect_ai/_display/textual/widgets/transcript.py +15 -9
- inspect_ai/_eval/task/error.py +10 -14
- inspect_ai/_eval/task/run.py +10 -8
- inspect_ai/_util/transcript.py +11 -0
- inspect_ai/_view/www/dist/assets/index.css +1 -0
- inspect_ai/_view/www/dist/assets/index.js +100 -94
- inspect_ai/_view/www/log-schema.json +35 -19
- inspect_ai/_view/www/src/components/ChatView.mjs +23 -0
- inspect_ai/_view/www/src/types/log.d.ts +6 -4
- inspect_ai/log/_recorders/eval.py +1 -1
- inspect_ai/model/_chat_message.py +27 -0
- inspect_ai/model/_conversation.py +10 -3
- inspect_ai/model/_generate_config.py +6 -0
- inspect_ai/model/_model.py +74 -0
- inspect_ai/model/_openai.py +33 -1
- inspect_ai/model/_providers/anthropic.py +12 -0
- inspect_ai/model/_providers/groq.py +4 -0
- inspect_ai/model/_providers/openai.py +21 -9
- inspect_ai/model/_providers/providers.py +1 -1
- inspect_ai/model/_reasoning.py +17 -0
- inspect_ai/solver/_basic_agent.py +19 -9
- inspect_ai/tool/beta/_computer/_resources/Dockerfile +4 -0
- inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb +0 -0
- inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/Code/User/settings.json +3 -0
- inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml +61 -0
- inspect_ai/tool/beta/_computer/_resources/image_home_dir/Desktop/Terminal.desktop +10 -0
- {inspect_ai-0.3.61.dist-info → inspect_ai-0.3.62.dist-info}/METADATA +1 -1
- {inspect_ai-0.3.61.dist-info → inspect_ai-0.3.62.dist-info}/RECORD +34 -29
- {inspect_ai-0.3.61.dist-info → inspect_ai-0.3.62.dist-info}/LICENSE +0 -0
- {inspect_ai-0.3.61.dist-info → inspect_ai-0.3.62.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.61.dist-info → inspect_ai-0.3.62.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.61.dist-info → inspect_ai-0.3.62.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,9 @@
|
|
1
1
|
from logging import getLogger
|
2
|
-
from typing import Callable, cast
|
2
|
+
from typing import Awaitable, Callable, cast
|
3
3
|
|
4
4
|
from typing_extensions import TypedDict, Unpack
|
5
5
|
|
6
|
+
from inspect_ai._util._async import is_callable_coroutine
|
6
7
|
from inspect_ai.model._cache import CachePolicy
|
7
8
|
from inspect_ai.model._call_tools import call_tools
|
8
9
|
from inspect_ai.model._chat_message import ChatMessageTool, ChatMessageUser
|
@@ -58,7 +59,9 @@ def basic_agent(
|
|
58
59
|
max_tool_output: int | None = None,
|
59
60
|
score_value: ValueToFloat | None = None,
|
60
61
|
incorrect_message: str
|
61
|
-
| Callable[
|
62
|
+
| Callable[
|
63
|
+
[TaskState, list[Score]], str | Awaitable[str]
|
64
|
+
] = DEFAULT_INCORRECT_MESSAGE,
|
62
65
|
continue_message: str = DEFAULT_CONTINUE_MESSAGE,
|
63
66
|
submit_name: str = DEFAULT_SUBMIT_NAME,
|
64
67
|
submit_description: str = DEFAULT_SUBMIT_DESCRIPTION,
|
@@ -93,8 +96,9 @@ def basic_agent(
|
|
93
96
|
Defaults to max_tool_output from active GenerateConfig.
|
94
97
|
score_value (ValueToFloat): Function used to extract float from scores (defaults
|
95
98
|
to standard value_to_float())
|
96
|
-
incorrect_message (str | Callable[[TaskState, list[Score]], str]):
|
97
|
-
incorrect submission from the model. Alternatively,
|
99
|
+
incorrect_message (str | Callable[[TaskState, list[Score]], str | Awaitable[str]]):
|
100
|
+
User message reply for an incorrect submission from the model. Alternatively,
|
101
|
+
a function which returns a message (function may optionally be async)
|
98
102
|
continue_message (str): User message to urge the model to continue when it
|
99
103
|
doesn't make a tool call.
|
100
104
|
submit_name (str): Name for tool used to make submissions
|
@@ -216,11 +220,17 @@ def basic_agent(
|
|
216
220
|
|
217
221
|
# otherwise notify the model that it was incorrect and continue
|
218
222
|
else:
|
219
|
-
|
220
|
-
incorrect_message(
|
221
|
-
|
222
|
-
|
223
|
-
)
|
223
|
+
if is_callable_coroutine(incorrect_message):
|
224
|
+
response_message: str = await incorrect_message(
|
225
|
+
state, answer_scores
|
226
|
+
) # type: ignore[misc,operator]
|
227
|
+
elif callable(incorrect_message):
|
228
|
+
response_message = cast(
|
229
|
+
str, incorrect_message(state, answer_scores)
|
230
|
+
)
|
231
|
+
else:
|
232
|
+
response_message = incorrect_message
|
233
|
+
|
224
234
|
state.messages.append(
|
225
235
|
ChatMessageUser(content=response_message)
|
226
236
|
)
|
@@ -60,6 +60,10 @@ RUN apt-get install -y \
|
|
60
60
|
# configure noVNC
|
61
61
|
RUN ln -s /usr/share/novnc/vnc.html /usr/share/novnc/index.html
|
62
62
|
|
63
|
+
# configure python alias
|
64
|
+
RUN ln -s /usr/bin/python3 /usr/bin/python
|
65
|
+
|
66
|
+
|
63
67
|
# We copy requirements.txt by itself so that changes to the scripts will be in a later layer
|
64
68
|
# and we only pip install if requirements.txt changes
|
65
69
|
COPY tool/requirements.txt /opt/inspect/tool/requirements.txt
|
inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb
ADDED
Binary file
|
@@ -0,0 +1,61 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
|
3
|
+
<channel name="xfce4-panel" version="1.0">
|
4
|
+
<property name="configver" type="int" value="2"/>
|
5
|
+
<property name="panels" type="array">
|
6
|
+
<value type="int" value="1"/>
|
7
|
+
<property name="dark-mode" type="bool" value="true"/>
|
8
|
+
<property name="panel-1" type="empty">
|
9
|
+
<property name="position" type="string" value="p=6;x=0;y=0"/>
|
10
|
+
<property name="length" type="uint" value="100"/>
|
11
|
+
<property name="position-locked" type="bool" value="true"/>
|
12
|
+
<property name="icon-size" type="uint" value="16"/>
|
13
|
+
<property name="size" type="uint" value="26"/>
|
14
|
+
<property name="plugin-ids" type="array">
|
15
|
+
<value type="int" value="1"/>
|
16
|
+
<value type="int" value="2"/>
|
17
|
+
<value type="int" value="3"/>
|
18
|
+
<value type="int" value="4"/>
|
19
|
+
<value type="int" value="5"/>
|
20
|
+
<value type="int" value="6"/>
|
21
|
+
<value type="int" value="8"/>
|
22
|
+
<value type="int" value="10"/>
|
23
|
+
<value type="int" value="11"/>
|
24
|
+
<value type="int" value="12"/>
|
25
|
+
<value type="int" value="13"/>
|
26
|
+
<value type="int" value="14"/>
|
27
|
+
</property>
|
28
|
+
</property>
|
29
|
+
</property>
|
30
|
+
<property name="plugins" type="empty">
|
31
|
+
<property name="plugin-1" type="string" value="applicationsmenu"/>
|
32
|
+
<property name="plugin-2" type="string" value="tasklist">
|
33
|
+
<property name="grouping" type="uint" value="1"/>
|
34
|
+
</property>
|
35
|
+
<property name="plugin-3" type="string" value="separator">
|
36
|
+
<property name="expand" type="bool" value="true"/>
|
37
|
+
<property name="style" type="uint" value="0"/>
|
38
|
+
</property>
|
39
|
+
<property name="plugin-4" type="string" value="pager"/>
|
40
|
+
<property name="plugin-5" type="string" value="separator">
|
41
|
+
<property name="style" type="uint" value="0"/>
|
42
|
+
</property>
|
43
|
+
<property name="plugin-6" type="string" value="systray">
|
44
|
+
<property name="square-icons" type="bool" value="true"/>
|
45
|
+
</property>
|
46
|
+
<property name="plugin-8" type="string" value="pulseaudio">
|
47
|
+
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
|
48
|
+
<property name="show-notifications" type="bool" value="true"/>
|
49
|
+
</property>
|
50
|
+
<property name="plugin-9" type="string" value="power-manager-plugin"/>
|
51
|
+
<property name="plugin-10" type="string" value="notification-plugin"/>
|
52
|
+
<property name="plugin-11" type="string" value="separator">
|
53
|
+
<property name="style" type="uint" value="0"/>
|
54
|
+
</property>
|
55
|
+
<property name="plugin-12" type="string" value="clock"/>
|
56
|
+
<property name="plugin-13" type="string" value="separator">
|
57
|
+
<property name="style" type="uint" value="0"/>
|
58
|
+
</property>
|
59
|
+
<property name="plugin-14" type="string" value="actions"/>
|
60
|
+
</property>
|
61
|
+
</channel>
|
@@ -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=y_lKUm5j2E6ERjvFTIgDuyQjxE1KF3BjTgtV2L0juGA,32422
|
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
|
@@ -12,7 +12,7 @@ inspect_ai/_cli/sandbox.py,sha256=1O4glQgTzV_9TbPtQs8iUpdXfOi7OzY5S58N6cQwD-I,81
|
|
12
12
|
inspect_ai/_cli/score.py,sha256=y_vrgmFMHE8BjTd6UWER3k2vtH1R9j8VKfuB7AQcYpc,2927
|
13
13
|
inspect_ai/_cli/trace.py,sha256=fvh1SPEEozJCd0xKHCb3b3YR3Q1FleDi93kFe1762xw,8959
|
14
14
|
inspect_ai/_cli/util.py,sha256=rOyKR5p08-04IwJdcjakNXD1Gm-dGFtzaTTx7hyArPE,1402
|
15
|
-
inspect_ai/_cli/view.py,sha256=
|
15
|
+
inspect_ai/_cli/view.py,sha256=8pGsQyEnZCi_PIqdtoyQOg3QohhL0EJgKtRQj1zXTGY,3063
|
16
16
|
inspect_ai/_display/__init__.py,sha256=t9Xj8FbxvdBNsalnr16U0r3jSTFX9w4yXcUJwb06_6k,405
|
17
17
|
inspect_ai/_display/core/active.py,sha256=oaOAQh8OU0TXTJCCPp8C9ZtRxW6AWvPXMmkiAeQQBfw,1260
|
18
18
|
inspect_ai/_display/core/config.py,sha256=8hXzbqn2bQqU0_bGchLGmw1p0-HozKpPrAzJfs5jAKs,1692
|
@@ -42,7 +42,7 @@ inspect_ai/_display/textual/widgets/task_detail.py,sha256=UCxQZkKrG6ILacuPpiJaoE
|
|
42
42
|
inspect_ai/_display/textual/widgets/tasks.py,sha256=Ari4-lsqPVsvAk4ZjdsnbO3l0JBmlifrbT9D7ykoUFA,11175
|
43
43
|
inspect_ai/_display/textual/widgets/titlebar.py,sha256=Gh_vnsco_1lStPb34TXM9MZJffjy83-1ekoRzUQF_6w,2144
|
44
44
|
inspect_ai/_display/textual/widgets/toggle.py,sha256=ToYs-S4n90yuxWcAW2OTg6AbRf0GhSz61XxfhE6XZ3Y,895
|
45
|
-
inspect_ai/_display/textual/widgets/transcript.py,sha256=
|
45
|
+
inspect_ai/_display/textual/widgets/transcript.py,sha256=3JbnqkPD6NyCBlD3F232DpNXHgerQkVkci3Yd0Ks6rE,11124
|
46
46
|
inspect_ai/_eval/context.py,sha256=WHXM4IdkPD2edp58qCUjzpFguPDM_RcoqTJdRGccdDE,1344
|
47
47
|
inspect_ai/_eval/eval.py,sha256=P0RNv8kuMyhn3lpvqSww97HCUtPFGECzTZ-mtgYC4Cg,37498
|
48
48
|
inspect_ai/_eval/evalset.py,sha256=Fh_JhIgmMgT0wV1ZwifuwtEmc-hrdGcH2KSHXMzgpxk,27219
|
@@ -54,12 +54,12 @@ inspect_ai/_eval/score.py,sha256=w84MupDMUziPlPUBB4xwdvXxtOvmYHFwEx9FOM8bJiA,638
|
|
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
|
-
inspect_ai/_eval/task/error.py,sha256=
|
57
|
+
inspect_ai/_eval/task/error.py,sha256=Vhqinfdf0eIrjn7kUY7-id8Kbdggr-fEFpAJeJrkJ1M,1244
|
58
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
61
|
inspect_ai/_eval/task/results.py,sha256=GkWlgHexm0BPyxrmqLY6YSXz3AqXYMVLXNnKCYfW7ic,15785
|
62
|
-
inspect_ai/_eval/task/run.py,sha256=
|
62
|
+
inspect_ai/_eval/task/run.py,sha256=l9NrKNC7BvD-qCKbvBHRqBJ-6s9tr2UAKRG56sCWonk,35025
|
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
|
@@ -108,7 +108,7 @@ inspect_ai/_util/thread.py,sha256=yao8tzMkX4860ulFWTb9x4BT7aHghibxRmfIxWBnZIA,11
|
|
108
108
|
inspect_ai/_util/throttle.py,sha256=JczSG_y0v60m4gQCt28uw_WPjJTbHuq8gWcxY3-vFsc,855
|
109
109
|
inspect_ai/_util/timeouts.py,sha256=-iC1LjpNqB6Hx-i36MfSrLy819RVhKNo4KXjZDuskZQ,5193
|
110
110
|
inspect_ai/_util/trace.py,sha256=TTgl485Ly7slVGv5m794ZQtPEH6W1dGvANnCdH-cfXg,9567
|
111
|
-
inspect_ai/_util/transcript.py,sha256=
|
111
|
+
inspect_ai/_util/transcript.py,sha256=aDoajLE10pEOKiknOmtXoUTCQFTfJadZqgC75XhvdFk,3968
|
112
112
|
inspect_ai/_util/url.py,sha256=Ci9I1T7hSRuA1CvgQmN9TWTSzUPO4ILMkd_8maZlO6k,622
|
113
113
|
inspect_ai/_util/version.py,sha256=PRh1HSHD_EgRW_VYIPquOPj-gL9DM164ePQ9LL3d9lU,739
|
114
114
|
inspect_ai/_util/vscode.py,sha256=UYQS4Do-_vPdEG5aLb50vl1txBhLQYjjEDVOJk9c2Cw,1446
|
@@ -126,7 +126,7 @@ inspect_ai/_view/www/eslint.config.mjs,sha256=wUi4ffMbjLKiLDBegWY6814TFu_ojR5GhA
|
|
126
126
|
inspect_ai/_view/www/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9MAs,1508
|
127
127
|
inspect_ai/_view/www/index.html,sha256=LDaPH75d5TlepHfIY3wQG0aBcHTpa90Bhx0er_ES45s,910
|
128
128
|
inspect_ai/_view/www/jsconfig.json,sha256=vt1gPPYezOFeV9nofA93CmVJAKGb1QeKGuyvEn1CXgk,383
|
129
|
-
inspect_ai/_view/www/log-schema.json,sha256=
|
129
|
+
inspect_ai/_view/www/log-schema.json,sha256=f37maoZGe3NSRlBi_YOMlF4iXy95I3XQZIeWPG2M96w,95400
|
130
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
|
@@ -134,8 +134,8 @@ inspect_ai/_view/www/vite.config.js,sha256=jmSUrV0YzGCcinfyKcmy2bDRUE10mmPUxMAen
|
|
134
134
|
inspect_ai/_view/www/yarn.lock,sha256=mNwe8OBr67_9nGoPJ_sjKnRST1wc13qg8y9-74ldi4k,76882
|
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
|
-
inspect_ai/_view/www/dist/assets/index.css,sha256
|
138
|
-
inspect_ai/_view/www/dist/assets/index.js,sha256=
|
137
|
+
inspect_ai/_view/www/dist/assets/index.css,sha256=bfZlZvfLID97haSCsITuh84QcH1fqPJK1MbkS29KBhc,859038
|
138
|
+
inspect_ai/_view/www/dist/assets/index.js,sha256=CS24veXSA8JxvDTO41rLGckBaelEcr6oVgAq_rD3fd4,2210766
|
139
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
141
|
inspect_ai/_view/www/src/Types.mjs,sha256=cdJgBRahz3hH-8XB7WiHeWJVCx8jG5TW1DoO7qm6hcU,734
|
@@ -159,7 +159,7 @@ inspect_ai/_view/www/src/components/AppErrorBoundary.mjs,sha256=3Xx-gzbk9Gt26r_P
|
|
159
159
|
inspect_ai/_view/www/src/components/AsciiCinemaPlayer.mjs,sha256=9rnw_6KYwHG83zc-r3df-uGmt2jpwIyUHt6vY-Ib9Dk,2033
|
160
160
|
inspect_ai/_view/www/src/components/Browser.mjs,sha256=hbvCZjyCCULUoI4GppP5Y9nCksIapmuhup5tjfbr8N0,291
|
161
161
|
inspect_ai/_view/www/src/components/Card.mjs,sha256=sIGe9Th6Jyb8hO7DWs4r_NbVTGcBdkN1O5418flBzIw,3177
|
162
|
-
inspect_ai/_view/www/src/components/ChatView.mjs,sha256=
|
162
|
+
inspect_ai/_view/www/src/components/ChatView.mjs,sha256=WLeFqPNwO1P78LMhP4eoFfy0BNX16VMNmbtOrDCJjb8,13452
|
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
165
|
inspect_ai/_view/www/src/components/DownloadButton.mjs,sha256=fy8uNL0lDqurFDVWvZc1QwLJ0HuaHgwE5L6J1VH_tOQ,433
|
@@ -236,7 +236,7 @@ inspect_ai/_view/www/src/samples/transcript/state/StateEventView.mjs,sha256=uKOm
|
|
236
236
|
inspect_ai/_view/www/src/sidebar/Sidebar.mjs,sha256=4hR2BPq6WZW6-XwoeORIKOLyfOEZcVUen08zjsBIAuc,11768
|
237
237
|
inspect_ai/_view/www/src/types/asciicinema-player.d.ts,sha256=PgM6swZ9P5pKXcdKfYfmd1dcZQDy105K60NvcQPFqVo,647
|
238
238
|
inspect_ai/_view/www/src/types/jsondiffpatch.d.ts,sha256=QXTAwln2Z1vDiNuoG4b-VWoH0hKMJHSM1L2deXEV6ZQ,188
|
239
|
-
inspect_ai/_view/www/src/types/log.d.ts,sha256=
|
239
|
+
inspect_ai/_view/www/src/types/log.d.ts,sha256=P71fhs-mZ9B8i6eSBTOkdpYc1BENuzwQ1g7BACYSpyU,26423
|
240
240
|
inspect_ai/_view/www/src/types/prism.d.ts,sha256=2HLpvrJ8USii20GT9DS8Z7de3vZw-ZjUEvQrybiFQ94,102
|
241
241
|
inspect_ai/_view/www/src/usage/ModelTokenTable.mjs,sha256=ev6waMVbnQg8mM_brrLsHdO6tJePTuRIn7kmMOPVu-8,1483
|
242
242
|
inspect_ai/_view/www/src/usage/UsageCard.mjs,sha256=rRXkwTRHBhld3LJh6DxCKFmigv19E_jusqIz9tJDiss,4088
|
@@ -297,39 +297,40 @@ inspect_ai/log/_samples.py,sha256=uuc9-XJ1_Ly3E1YiBaRn0-pqQ4mCN4fIsVX8f6yvg38,42
|
|
297
297
|
inspect_ai/log/_transcript.py,sha256=4Fwpv6_4zDuJlc9ctjf712_wXdS1LEHbjdSDwP-y4Fg,10899
|
298
298
|
inspect_ai/log/_recorders/__init__.py,sha256=-ECELTfjeWwDuEIBSXO2oxEtJ6Dn0ZQYUxrEy0klN34,350
|
299
299
|
inspect_ai/log/_recorders/create.py,sha256=WB-fms0dBDHlTtTa_a_r0fFc6UPRvQZKZT7d_Inp-EU,1103
|
300
|
-
inspect_ai/log/_recorders/eval.py,sha256=
|
300
|
+
inspect_ai/log/_recorders/eval.py,sha256=oEaqw3EjCoH8HSH4uFtD2jT5IzBxr6RqsqZmkWXAY1c,17330
|
301
301
|
inspect_ai/log/_recorders/file.py,sha256=bY0fCr4_gWgLG0g2lYgts7wJYxaiKFdKEz3csu9WCwo,2457
|
302
302
|
inspect_ai/log/_recorders/json.py,sha256=l8I1YAsjnD0fuOYV_KVIWciOCBO6FYgVVkour78_jDI,8980
|
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
306
|
inspect_ai/model/_call_tools.py,sha256=Vy3uXVpHY9b0gQrXu3KGmvEOWXntSCxbpJ0elTAQ0So,18128
|
307
|
-
inspect_ai/model/_chat_message.py,sha256=
|
308
|
-
inspect_ai/model/_conversation.py,sha256=
|
309
|
-
inspect_ai/model/_generate_config.py,sha256=
|
307
|
+
inspect_ai/model/_chat_message.py,sha256=Mcue0i6_By7FPrjsOdvrJ_Gpt916aTvxuWQHf0fZjgM,5813
|
308
|
+
inspect_ai/model/_conversation.py,sha256=cd5ru6lD2xsfkdB9lfWYPbuvzdqjv9geOVFl2HXSad8,2163
|
309
|
+
inspect_ai/model/_generate_config.py,sha256=bIr8u4WvyAAAqW0tLp4XpWjzdy4l5k-fiePxUpfLj8o,8991
|
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=IQh187Ed9B_fl9CDJVn4kvXx87UKDaQim5K6DAvIAVM,39654
|
312
312
|
inspect_ai/model/_model_call.py,sha256=r6ObHZwm7jy1qX2qxvAP6iPV3BhdGThL-VH-QEawQhA,2017
|
313
313
|
inspect_ai/model/_model_output.py,sha256=X6dEH3L4XPs5H8cWQeVF8tlkDMNRqP3StJlPA_z140E,7029
|
314
|
-
inspect_ai/model/_openai.py,sha256=
|
314
|
+
inspect_ai/model/_openai.py,sha256=0iRRwFwsqFCTZ0OHPcZl_O__Z8nuu5nlpx2RGyHKOPs,13772
|
315
|
+
inspect_ai/model/_reasoning.py,sha256=i1xUArctTefcvmwxcU4kK26PvgULYvvMn25P1GQJP08,440
|
315
316
|
inspect_ai/model/_registry.py,sha256=Cr2y32EqLnOqLbSWoXHVK4ivTTzCUhJuACxoTyPt8kY,2032
|
316
317
|
inspect_ai/model/_render.py,sha256=rWypNUjgrH4NGp0r-ESAze9gZz7lYNjheEP438vRYZE,922
|
317
|
-
inspect_ai/model/_providers/anthropic.py,sha256=
|
318
|
+
inspect_ai/model/_providers/anthropic.py,sha256=ZDX-CSEKDZJ2j5UItEMEyHNvgLbabjkHqc8FaI5vOko,25063
|
318
319
|
inspect_ai/model/_providers/azureai.py,sha256=moIC4-um_Qs3iXbr4DlP6LUL924aF-s5YyQqF0V5ye4,14037
|
319
320
|
inspect_ai/model/_providers/bedrock.py,sha256=BiSEQYlGLKqaadGUJxSQuule3JPLZbAIjfhJ36DYQ8k,23357
|
320
321
|
inspect_ai/model/_providers/cloudflare.py,sha256=h6ubjf0kxyMM7Aj2tm68tWa-2R7RAXNGp1O6KMvi0Gw,4143
|
321
322
|
inspect_ai/model/_providers/goodfire.py,sha256=Pu11d4mATDq5B750Q6Z4ZS8EC_nniFtleCQTTd-Pxm8,8690
|
322
323
|
inspect_ai/model/_providers/google.py,sha256=j0P7DmtLtaw8lunpQla7MlG8hPWLyzrRg-iEG6vrEkI,23226
|
323
324
|
inspect_ai/model/_providers/grok.py,sha256=dS88ueXiD-kHAFr0jCoTpTGLGa2VsUlB_TFP8L_2lBM,995
|
324
|
-
inspect_ai/model/_providers/groq.py,sha256=
|
325
|
+
inspect_ai/model/_providers/groq.py,sha256=ikn3812nGvU6fGlrZcpD-LiN-EqEobo-zof8hPK9rV8,9958
|
325
326
|
inspect_ai/model/_providers/hf.py,sha256=bgUtYZAitHxtoVyt0I0Wnz-rf6jRAqIjQ82QjZBOJAM,17468
|
326
327
|
inspect_ai/model/_providers/llama_cpp_python.py,sha256=i2I56Damgb8VDhMuPxPca24fVhlajDHzxCTYFnT41uI,702
|
327
328
|
inspect_ai/model/_providers/mistral.py,sha256=xTJSdb1-_hwTr3qesSbS5hyEqWrDzSQwGY__kHaQ1tc,15213
|
328
329
|
inspect_ai/model/_providers/mockllm.py,sha256=gL9f-f5TOdE4a0GVENr3cOIIp2kv8zVXWPZ608rouGk,2440
|
329
330
|
inspect_ai/model/_providers/ollama.py,sha256=mBPSxaEkiH_RnlHKqOyFBlXObQhc2dfjL-rCKrea5u8,675
|
330
|
-
inspect_ai/model/_providers/openai.py,sha256=
|
331
|
+
inspect_ai/model/_providers/openai.py,sha256=WO0OsefUNPT6SKTr8WUaLVAGUriA5pOLJ68LuDlYg5c,11746
|
331
332
|
inspect_ai/model/_providers/openai_o1.py,sha256=W790nMo6ujKcqfdyiR-Q2aA3RRT3LwToLU3OM86-xl0,12242
|
332
|
-
inspect_ai/model/_providers/providers.py,sha256
|
333
|
+
inspect_ai/model/_providers/providers.py,sha256=XbXFuy_zZFTx56Ol7hO9m_knH71rHuzY_n1JoLmnKJw,6192
|
333
334
|
inspect_ai/model/_providers/together.py,sha256=0KpFLKbnP_a_AH7VN18eLtlm7kGvJkBIura9drdc7BU,9483
|
334
335
|
inspect_ai/model/_providers/vertex.py,sha256=_dvhtboSfb6uYez421vqmJrcc-SBZAIP6XYNwtHElKM,16391
|
335
336
|
inspect_ai/model/_providers/vllm.py,sha256=cggwgDMEwdF9DKdqGxo-XMMkDte-rQoHIBf6nipZ1Pg,14093
|
@@ -360,7 +361,7 @@ inspect_ai/scorer/_reducer/reducer.py,sha256=g8F7sTm_FmPcLdavOGv0YuvqZ5_nz2irmQV
|
|
360
361
|
inspect_ai/scorer/_reducer/registry.py,sha256=J2tvuuxf4jBC09_SCBZg99Qb2qQUWG8STEsw7ASWpXQ,5388
|
361
362
|
inspect_ai/scorer/_reducer/types.py,sha256=uimvzIBRK7x1Dof77gsHYe9PU3hekB1opm9DTAa4sL4,340
|
362
363
|
inspect_ai/solver/__init__.py,sha256=I8lmfnohTUYyW3aR7sCQhkOBh9R75a0-QrYkR3hG76E,3433
|
363
|
-
inspect_ai/solver/_basic_agent.py,sha256=
|
364
|
+
inspect_ai/solver/_basic_agent.py,sha256=sK7S_n4iUbgh8KLSEuxwsg2hgmBUrTL8-MU6ptkqA5g,10659
|
364
365
|
inspect_ai/solver/_chain.py,sha256=F-2ZHE2KOlDAIgH1_Q23whUMH5TjYGvCHhcOgbRxe7I,2234
|
365
366
|
inspect_ai/solver/_critique.py,sha256=ddO8J7VqSEsT6kofawpn3PrcUpLjLUMFmJi0hocDZpI,3504
|
366
367
|
inspect_ai/solver/_fork.py,sha256=Ge1PwpCHjeZhm2CLAWKss2uFuQd9BGzVinLOW6UOnfE,2880
|
@@ -424,15 +425,19 @@ inspect_ai/tool/beta/_computer/__init__.py,sha256=fq4BSM4aDhtEtE4279xm47NiO6vyiZ
|
|
424
425
|
inspect_ai/tool/beta/_computer/_common.py,sha256=6XK6MBu2ZiRCao_eMlZdjXEvTmbeKQRN0K-8MtBPsk4,4059
|
425
426
|
inspect_ai/tool/beta/_computer/_computer.py,sha256=2R-3GLoSvQn8b0rVPur3jMzaRK4nS6i_sDwzicj5XJ8,7433
|
426
427
|
inspect_ai/tool/beta/_computer/_computer_split.py,sha256=H3DVCJqpHp_2ra85W_z9s5r-oHTVWwctuEq5fDdy2T4,5588
|
427
|
-
inspect_ai/tool/beta/_computer/_resources/Dockerfile,sha256=
|
428
|
+
inspect_ai/tool/beta/_computer/_resources/Dockerfile,sha256=DA1ZzOqO3vEySSfoDV9bCBl_iVmpzhiNz_s1Oyd1gO0,3568
|
428
429
|
inspect_ai/tool/beta/_computer/_resources/README.md,sha256=5JDNaGJ-Ebq6Io57ANFIqgjPoh11aGDSrrgrhyfiqxU,1657
|
429
430
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/entrypoint.sh,sha256=IR8sE-b22YO7lwzdDiyjhLTJWIf0X__wA8WE98dwkwM,394
|
430
431
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/novnc_startup.sh,sha256=PAbMgSvprnLvbj8A8a59o_yDfm-jiCXxBxsPb004Bf8,383
|
431
432
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/x11vnc_startup.sh,sha256=JFcW46u2ioDpGLptmUOMaqtt2YvuFhCTB42cyWRmo8c,993
|
432
433
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/xfce_startup.sh,sha256=w_27I4o7usP8SUMzP3lrXeNuISslyy1aywkgpm_2l4Q,209
|
433
434
|
inspect_ai/tool/beta/_computer/_resources/entrypoint/xvfb_startup.sh,sha256=hd2naWFFpm3S0cWZ6Lhlpm6KD3L6-g8Zw2dgxchXMUg,1118
|
435
|
+
inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/Code/User/settings.json,sha256=n4B3q9qIcPnku_LXa3s0c87rtS7rpYRRMRrZfQuef3M,48
|
436
|
+
inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb,sha256=IywnS_kbluMmzEigds2Leg1r_uoIQEDX1eWKtYy4fQc,155648
|
437
|
+
inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml,sha256=dIUGsB1BFK37S1ahbyhCiFsyGlGS4yT_paViPwXBW_g,2725
|
434
438
|
inspect_ai/tool/beta/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml,sha256=jNgaNqBCngQlykTlLhmmdc_LLOrH2AMk7pUpLkbCjMY,312
|
435
439
|
inspect_ai/tool/beta/_computer/_resources/image_home_dir/Desktop/Firefox Web Browser.desktop,sha256=Odm77RSEiTlMx7cY8odUCO2a8fvIUwHcpEUanpHzbL0,181
|
440
|
+
inspect_ai/tool/beta/_computer/_resources/image_home_dir/Desktop/Terminal.desktop,sha256=Kq3CHhYP-YjwEIUS90TJVib_LoQ-9Tq0-3VIGYj6urM,195
|
436
441
|
inspect_ai/tool/beta/_computer/_resources/image_home_dir/Desktop/Visual Studio Code.desktop,sha256=jYYu8pcdIhFCC_3cEgO-0z0A6eQO2WQkIVViebSBbpA,184
|
437
442
|
inspect_ai/tool/beta/_computer/_resources/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
438
443
|
inspect_ai/tool/beta/_computer/_resources/tool/_logger.py,sha256=owkNYe9lyShTLXoMqhK4Qtzacnt5FvSxN8Wqf2MO5XM,652
|
@@ -468,9 +473,9 @@ inspect_ai/util/_sandbox/docker/docker.py,sha256=sx4PNv_4PDuKlkeYV6ASaZbo0XT-I_V
|
|
468
473
|
inspect_ai/util/_sandbox/docker/internal.py,sha256=fATyk2pdtjSl-D0VPT4dmkXV-gOc5HrPH0EQDW4IAJY,1446
|
469
474
|
inspect_ai/util/_sandbox/docker/prereqs.py,sha256=0j6_OauBBnVlpBleADcZavIAAQZy4WewVjbRn9c0stg,3355
|
470
475
|
inspect_ai/util/_sandbox/docker/util.py,sha256=pSPsRGymrTmTnEUHiHoQSNqeurPP1mL5kB-105O6EWo,2794
|
471
|
-
inspect_ai-0.3.
|
472
|
-
inspect_ai-0.3.
|
473
|
-
inspect_ai-0.3.
|
474
|
-
inspect_ai-0.3.
|
475
|
-
inspect_ai-0.3.
|
476
|
-
inspect_ai-0.3.
|
476
|
+
inspect_ai-0.3.62.dist-info/LICENSE,sha256=aYPffOl9TwBXDQ8g33Jh6AsBhobb3A76qNm7r2HZsps,1079
|
477
|
+
inspect_ai-0.3.62.dist-info/METADATA,sha256=xqS7VNd17-q7V7R0BL_0Ddl5awi9OZQeKepW5iuQmd8,4528
|
478
|
+
inspect_ai-0.3.62.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
479
|
+
inspect_ai-0.3.62.dist-info/entry_points.txt,sha256=WGGLmzTzDWLzYfiyovSY6oEKuf-gqzSDNOb5V-hk3fM,54
|
480
|
+
inspect_ai-0.3.62.dist-info/top_level.txt,sha256=Tp3za30CHXJEKLk8xLe9qGsW4pBzJpEIOMHOHNCXiVo,11
|
481
|
+
inspect_ai-0.3.62.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|