inspect-ai 0.3.85__py3-none-any.whl → 0.3.87__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/textual/widgets/task_detail.py +4 -4
- inspect_ai/_eval/eval.py +9 -6
- inspect_ai/_eval/task/log.py +1 -0
- inspect_ai/_view/www/dist/assets/index.js +13187 -26014
- inspect_ai/_view/www/src/api/types.ts +1 -1
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx +1 -1
- inspect_ai/log/_log.py +3 -0
- inspect_ai/log/_recorders/buffer/database.py +19 -11
- inspect_ai/model/_openai.py +2 -2
- inspect_ai/model/_providers/openai.py +3 -2
- inspect_ai/model/_providers/together.py +2 -2
- {inspect_ai-0.3.85.dist-info → inspect_ai-0.3.87.dist-info}/METADATA +1 -1
- {inspect_ai-0.3.85.dist-info → inspect_ai-0.3.87.dist-info}/RECORD +17 -17
- {inspect_ai-0.3.85.dist-info → inspect_ai-0.3.87.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.85.dist-info → inspect_ai-0.3.87.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.85.dist-info → inspect_ai-0.3.87.dist-info}/licenses/LICENSE +0 -0
- {inspect_ai-0.3.85.dist-info → inspect_ai-0.3.87.dist-info}/top_level.txt +0 -0
@@ -35,7 +35,7 @@ export const displayScorersFromRunningMetrics = (metrics?: RunningMetric[]) => {
|
|
35
35
|
|
36
36
|
const scorers: Record<string, ResultsScorer> = {};
|
37
37
|
metrics.forEach((metric) => {
|
38
|
-
if (metric.value !== undefined) {
|
38
|
+
if (metric.value !== undefined && metric.value !== null) {
|
39
39
|
const key = getKey(metric);
|
40
40
|
if (scorers[key]) {
|
41
41
|
scorers[key].metrics.push({
|
inspect_ai/log/_log.py
CHANGED
@@ -599,6 +599,9 @@ class EvalSpec(BaseModel):
|
|
599
599
|
model: str
|
600
600
|
"""Model used for eval."""
|
601
601
|
|
602
|
+
model_generate_config: GenerateConfig = Field(default_factory=GenerateConfig)
|
603
|
+
"""Generate config specified for model instance."""
|
604
|
+
|
602
605
|
model_base_url: str | None = Field(default=None)
|
603
606
|
"""Optional override of model base url"""
|
604
607
|
|
@@ -199,28 +199,36 @@ class SampleBufferDatabase(SampleBuffer):
|
|
199
199
|
)
|
200
200
|
|
201
201
|
def remove_samples(self, samples: list[tuple[str | int, int]]) -> None:
|
202
|
+
# short circuit no samples
|
203
|
+
if len(samples) == 0:
|
204
|
+
return
|
205
|
+
|
202
206
|
with self._get_connection(write=True) as conn:
|
203
207
|
cursor = conn.cursor()
|
204
208
|
try:
|
205
|
-
#
|
206
|
-
|
207
|
-
|
208
|
-
[f"('{sid}', {epoch})" for sid, epoch in samples]
|
209
|
+
# Build a query using individual column comparisons instead of row values
|
210
|
+
placeholders = " OR ".join(
|
211
|
+
["(sample_id=? AND sample_epoch=?)" for _ in samples]
|
209
212
|
)
|
210
213
|
|
211
|
-
#
|
214
|
+
# Flatten parameters for binding
|
215
|
+
parameters = [item for tup in samples for item in tup]
|
216
|
+
|
217
|
+
# Delete associated events first
|
212
218
|
events_query = f"""
|
213
219
|
DELETE FROM events
|
214
|
-
WHERE
|
220
|
+
WHERE {placeholders}
|
215
221
|
"""
|
216
|
-
cursor.execute(events_query)
|
222
|
+
cursor.execute(events_query, parameters)
|
223
|
+
|
224
|
+
# Then delete the samples using the same approach
|
225
|
+
placeholders = " OR ".join(["(id=? AND epoch=?)" for _ in samples])
|
217
226
|
|
218
|
-
# Then delete the samples
|
219
227
|
samples_query = f"""
|
220
228
|
DELETE FROM samples
|
221
|
-
WHERE
|
229
|
+
WHERE {placeholders}
|
222
230
|
"""
|
223
|
-
cursor.execute(samples_query)
|
231
|
+
cursor.execute(samples_query, parameters)
|
224
232
|
finally:
|
225
233
|
cursor.close()
|
226
234
|
|
@@ -259,7 +267,7 @@ class SampleBufferDatabase(SampleBuffer):
|
|
259
267
|
|
260
268
|
# fetch data
|
261
269
|
return Samples(
|
262
|
-
samples=list(self._get_samples(conn)),
|
270
|
+
samples=list(self._get_samples(conn, True)),
|
263
271
|
metrics=task_data.metrics,
|
264
272
|
refresh=self.update_interval,
|
265
273
|
etag=str(task_data.version),
|
inspect_ai/model/_openai.py
CHANGED
@@ -3,7 +3,7 @@ import re
|
|
3
3
|
from copy import copy
|
4
4
|
from typing import Literal
|
5
5
|
|
6
|
-
from openai import
|
6
|
+
from openai import APIStatusError, OpenAIError
|
7
7
|
from openai.types.chat import (
|
8
8
|
ChatCompletion,
|
9
9
|
ChatCompletionAssistantMessageParam,
|
@@ -518,7 +518,7 @@ def chat_choices_from_openai(
|
|
518
518
|
|
519
519
|
|
520
520
|
def openai_handle_bad_request(
|
521
|
-
model_name: str, e:
|
521
|
+
model_name: str, e: APIStatusError
|
522
522
|
) -> ModelOutput | Exception:
|
523
523
|
# extract message
|
524
524
|
if isinstance(e.body, dict) and "message" in e.body.keys():
|
@@ -13,6 +13,7 @@ from openai import (
|
|
13
13
|
AsyncOpenAI,
|
14
14
|
BadRequestError,
|
15
15
|
RateLimitError,
|
16
|
+
UnprocessableEntityError,
|
16
17
|
)
|
17
18
|
from openai._types import NOT_GIVEN
|
18
19
|
from openai.types.chat import ChatCompletion
|
@@ -295,13 +296,13 @@ class OpenAIAPI(ModelAPI):
|
|
295
296
|
else None
|
296
297
|
),
|
297
298
|
), model_call()
|
298
|
-
except BadRequestError as e:
|
299
|
+
except (BadRequestError, UnprocessableEntityError) as e:
|
299
300
|
return self.handle_bad_request(e), model_call()
|
300
301
|
|
301
302
|
def on_response(self, response: dict[str, Any]) -> None:
|
302
303
|
pass
|
303
304
|
|
304
|
-
def handle_bad_request(self, ex:
|
305
|
+
def handle_bad_request(self, ex: APIStatusError) -> ModelOutput | Exception:
|
305
306
|
return openai_handle_bad_request(self.model_name, ex)
|
306
307
|
|
307
308
|
def _chat_choices_from_response(
|
@@ -3,7 +3,7 @@ from json import dumps
|
|
3
3
|
from typing import Any
|
4
4
|
|
5
5
|
import httpx
|
6
|
-
from openai import
|
6
|
+
from openai import APIStatusError
|
7
7
|
from openai.types.chat import (
|
8
8
|
ChatCompletion,
|
9
9
|
)
|
@@ -105,7 +105,7 @@ class TogetherAIAPI(OpenAIAPI):
|
|
105
105
|
return DEFAULT_MAX_TOKENS
|
106
106
|
|
107
107
|
@override
|
108
|
-
def handle_bad_request(self, ex:
|
108
|
+
def handle_bad_request(self, ex: APIStatusError) -> ModelOutput | Exception:
|
109
109
|
response = ex.response.json()
|
110
110
|
if "error" in response and "message" in response.get("error"):
|
111
111
|
content = response.get("error").get("message")
|
@@ -38,7 +38,7 @@ inspect_ai/_display/textual/widgets/footer.py,sha256=ZJvFMsNiGIFvlkaJenruqeMpu3_
|
|
38
38
|
inspect_ai/_display/textual/widgets/port_mappings.py,sha256=mxQJGYeZh1aXNmW5z-Ukss7Zwul5qfH5CqtvTLl0BAU,2974
|
39
39
|
inspect_ai/_display/textual/widgets/samples.py,sha256=8wDq7l4mUaPk_DyG5pIgyMfEtsAEufd24w8GVHXSAT0,20252
|
40
40
|
inspect_ai/_display/textual/widgets/sandbox.py,sha256=_Ivpba2oIxs_Lw2Pic7BRoHeVu9ibaGPFhiyfzbcc9E,1146
|
41
|
-
inspect_ai/_display/textual/widgets/task_detail.py,sha256=
|
41
|
+
inspect_ai/_display/textual/widgets/task_detail.py,sha256=P8r7dm17dm-TbiOJ3AuxhH-xnV6LsEMFhkr-0Qf9ENk,8477
|
42
42
|
inspect_ai/_display/textual/widgets/tasks.py,sha256=RW3xWF8kvI6FVZK2jHBDLFZR2DmVkSjfq1Q8HxiOHtI,11804
|
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
|
@@ -46,7 +46,7 @@ inspect_ai/_display/textual/widgets/transcript.py,sha256=zaxlDixT6Fie0acAWBM9Hlt
|
|
46
46
|
inspect_ai/_display/textual/widgets/vscode.py,sha256=YTXdIZ0fcf9XE2v3rWIfUTgnXFww8uKCo7skugQLIbs,1247
|
47
47
|
inspect_ai/_eval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
48
|
inspect_ai/_eval/context.py,sha256=gWTjEEMVTJMJpCCKLRs4joZDkG00rzE7-HXZFyzSC_I,1283
|
49
|
-
inspect_ai/_eval/eval.py,sha256=
|
49
|
+
inspect_ai/_eval/eval.py,sha256=tfIYOJSNGNfZHl18XYqXZHIMKlCmUZ8gbqe7I0OZJII,40307
|
50
50
|
inspect_ai/_eval/evalset.py,sha256=FnZBVi5hOt6f84PNYlFhkjb7N1lNgiQydQlernJZeW4,24005
|
51
51
|
inspect_ai/_eval/list.py,sha256=VbZ-2EI6MqrXvCN7VTz21TQSoU5K5_Q0hqhxmj5A_m0,3744
|
52
52
|
inspect_ai/_eval/loader.py,sha256=yCDrW5MhP6GT329hZ_gUm_eAMsCA9G7jb8sm45Pj-pw,24970
|
@@ -59,7 +59,7 @@ inspect_ai/_eval/task/epochs.py,sha256=Ci7T6CQniSOTChv5Im2dCdSDrP-5hq19rV6iJ2uBc
|
|
59
59
|
inspect_ai/_eval/task/error.py,sha256=Vhqinfdf0eIrjn7kUY7-id8Kbdggr-fEFpAJeJrkJ1M,1244
|
60
60
|
inspect_ai/_eval/task/generate.py,sha256=C9-S9ak4VFQO7QgtUbGjt8F4sTyXS5nekR3Mg_MPwmM,2511
|
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=PD2ZrqtHY0zRyx7pB8L5v-txyaBRePs76cFu5Fb-vjE,11817
|
63
63
|
inspect_ai/_eval/task/resolved.py,sha256=OCQc_0HmW_Vw8o1KisX0DCn-eOPkTbR1v_y_jEaAlhU,966
|
64
64
|
inspect_ai/_eval/task/results.py,sha256=x4weYRK2XGowfBG3f2msOeZQ_pxh230HTlw6kps33jw,17925
|
65
65
|
inspect_ai/_eval/task/run.py,sha256=RS2Qv3AythSkQL4fsgBFaXfyx2WDIZuFj9v6ifoRiYs,38714
|
@@ -145,7 +145,7 @@ inspect_ai/_view/www/.vscode/settings.json,sha256=g5hrVnMaYxM06JpiJD2EuE2xjcbF6x
|
|
145
145
|
inspect_ai/_view/www/dist/index.html,sha256=gpdu6SR-SOH9EWx15cCWHzujMZujnZR5tRlEfROJg2A,997
|
146
146
|
inspect_ai/_view/www/dist/assets/favicon.svg,sha256=b9AHYZaO2zBzeKH6G4PwXZMGGW_UxY0omKHam-c9MAs,1508
|
147
147
|
inspect_ai/_view/www/dist/assets/index.css,sha256=MJqA9B2IgULwy9SGk-8u4iaBgg99B4W3QSXWD8JL-GE,2360161
|
148
|
-
inspect_ai/_view/www/dist/assets/index.js,sha256=
|
148
|
+
inspect_ai/_view/www/dist/assets/index.js,sha256=Dc-h_TPVBcocoerN-vR6Xak7v65B8pt2CE7kcbk3ZN4,3093691
|
149
149
|
inspect_ai/_view/www/node_modules/flatted/python/flatted.py,sha256=UYburBDqkySaTfSpntPCUJRxiBGcplusJM7ECX8FEgA,3860
|
150
150
|
inspect_ai/_view/www/src/App.tsx,sha256=M21uqy08olnk9s3JJxOJ5dYSBP7LBQ1MIUXDWpO8878,9931
|
151
151
|
inspect_ai/_view/www/src/AppErrorBoundary.tsx,sha256=RyhZWbIMZj1QeUOUUXh9hUFvq6LoDEoHuTY0giswmL0,1169
|
@@ -159,7 +159,7 @@ inspect_ai/_view/www/src/api/api-vscode.ts,sha256=mHlV8JonUBNpNa1IBKhnRZajFo7Bex
|
|
159
159
|
inspect_ai/_view/www/src/api/client-api.ts,sha256=_UQRozABgj4IPfj6MY0OiSt8ng8UBRPEqAWTwWUg4X8,9623
|
160
160
|
inspect_ai/_view/www/src/api/index.ts,sha256=8ZnvEspFRo9n0oWpWEw_FeGXmEbep36QlrvX4dgRPnA,1765
|
161
161
|
inspect_ai/_view/www/src/api/jsonrpc.ts,sha256=pmkI50pwaLhQYDu5Pt_X1wR-Ik-RzqYNdhn_ayshEDA,5784
|
162
|
-
inspect_ai/_view/www/src/api/types.ts,sha256
|
162
|
+
inspect_ai/_view/www/src/api/types.ts,sha256=FIUuhjDohLMy0mY2INnAw7pf36YOH-Vu1ckQNvqP4hk,5227
|
163
163
|
inspect_ai/_view/www/src/appearance/colors.ts,sha256=nkVEfmgLb8vTOF1o0YNu0SWNwmSMAbPKFwg4OTZDK_M,217
|
164
164
|
inspect_ai/_view/www/src/appearance/fonts.ts,sha256=HQxM4cdxSpPQCGJX4vsfKU9wFd1TWNUXDTK7GP0bMUE,823
|
165
165
|
inspect_ai/_view/www/src/appearance/icons.ts,sha256=PWkPHl2PmGtJXifnXeY9OrcipDOF9509OJ93MTHG3qE,2747
|
@@ -419,7 +419,7 @@ inspect_ai/_view/www/src/workspace/navbar/Navbar.tsx,sha256=YmzZrGzfZPO3k9n2RBxN
|
|
419
419
|
inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.module.css,sha256=P7cf1D93jOBB0j9srjDMhFQhnV8N_9-RNNFFOSnr9sE,828
|
420
420
|
inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.tsx,sha256=51ReXoKMLKxjwt0Kt3bHKQAwLNFKp_yERE5_jGiioEY,4278
|
421
421
|
inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.module.css,sha256=pmuzWqHbYhpucyC3CO3fdvqD_Qn8whdt9zCPx6iKlGs,1811
|
422
|
-
inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx,sha256=
|
422
|
+
inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx,sha256=Lpuwoo0tjhraERvPdmWoGycwHXur8b0h_CLvcxDRZdU,5913
|
423
423
|
inspect_ai/_view/www/src/workspace/navbar/RunningStatusPanel.module.css,sha256=EU5QLKiSRKQWg8PFt62tAe3iEWQyd0DL2UuCn7zJxg4,468
|
424
424
|
inspect_ai/_view/www/src/workspace/navbar/RunningStatusPanel.tsx,sha256=K03aDRgcQu5ZcJIsJn46NS0Fh2any-qiO7RTH77Kj1U,869
|
425
425
|
inspect_ai/_view/www/src/workspace/navbar/ScoreGrid.module.css,sha256=2aa2XnHdGOLT7NZBXPE1I0C56-SClw_mhWWUwDN3zU4,447
|
@@ -510,7 +510,7 @@ inspect_ai/log/_bundle.py,sha256=5Uy-s64_SFokZ7WRzti9mD7yoKrd2sOzdvqKyahoiC4,804
|
|
510
510
|
inspect_ai/log/_condense.py,sha256=OedMphK5Q2YPuY1cnoAM7tGsyVIU6Kwrv3oIeb3dFmY,10881
|
511
511
|
inspect_ai/log/_convert.py,sha256=qn6q10Um2XV7dnK4nQargANa0bz6RFJPmaEMINv38cs,3467
|
512
512
|
inspect_ai/log/_file.py,sha256=QjeVUegoCWVUv6CMsj0das_UpZZZMfnbvCQAKlFYGXE,17105
|
513
|
-
inspect_ai/log/_log.py,sha256=
|
513
|
+
inspect_ai/log/_log.py,sha256=KsssY2kGfuDHGIXOGJHN4bO1LXVs0f3XtqIUfA2R68A,25109
|
514
514
|
inspect_ai/log/_message.py,sha256=QofM_JZF_x3k_5ta1uQzoN_VnMoUhXFnqWurIn9FXOY,1999
|
515
515
|
inspect_ai/log/_retry.py,sha256=e7a2hjl3Ncl8b8sU7CsDpvK8DV0b1uSRLeokRX1mt34,2109
|
516
516
|
inspect_ai/log/_samples.py,sha256=wPQlV1VR9djWaj37lLrjBprCabdAm4S2vFOsQTcd12U,4910
|
@@ -524,7 +524,7 @@ inspect_ai/log/_recorders/recorder.py,sha256=zDDpl2tktPjb6xk5kd4TyEMxkXZiLgXXpPi
|
|
524
524
|
inspect_ai/log/_recorders/types.py,sha256=Aeo-U7FhmWQSvE_uz3fwUI7cqaSR-ZE_uRVu-1fBCgc,865
|
525
525
|
inspect_ai/log/_recorders/buffer/__init__.py,sha256=6DsRdnNl-ic-xJmnBE5i45ZP3eB4yAta9wxi5WFcbqc,367
|
526
526
|
inspect_ai/log/_recorders/buffer/buffer.py,sha256=rtLvaX7nSqNrWb-3CeSaOHwJgF1CzRgXFT_I1dDkM1k,945
|
527
|
-
inspect_ai/log/_recorders/buffer/database.py,sha256=
|
527
|
+
inspect_ai/log/_recorders/buffer/database.py,sha256=3yV8OlDsQ4zFQHNqe7aBAHwkUISW3zmaLBlD1OFj36w,22396
|
528
528
|
inspect_ai/log/_recorders/buffer/filestore.py,sha256=S6RP-5zkOPSmy1hV2LCCbfwdX-YFZGuIEjfJuOWMjDQ,8274
|
529
529
|
inspect_ai/log/_recorders/buffer/types.py,sha256=pTnPCZHbk9qF6yF-eNXHTa23cLH_FvP8dmfPJCFO15Q,2046
|
530
530
|
inspect_ai/model/__init__.py,sha256=6Aa_HEU-rgxWPDaIRlE6KBdXY406x2LtcLeVtAxk-AI,2453
|
@@ -537,7 +537,7 @@ inspect_ai/model/_generate_config.py,sha256=_-kzw7LOl45baVkTjlfL1K1VLKGgNOOczH2H
|
|
537
537
|
inspect_ai/model/_model.py,sha256=h4ASS2VuTZ_97145rLW202u6e7-mw4ENnnlBl0Vsbio,52127
|
538
538
|
inspect_ai/model/_model_call.py,sha256=VJ8wnl9Y81JaiClBYM8eyt1jVb3n-yc6Dd88ofRiJDc,2234
|
539
539
|
inspect_ai/model/_model_output.py,sha256=R5EAUPLc5RWymVb3le4cbqbNCZ9voTzg0U1j_e4I-yM,7768
|
540
|
-
inspect_ai/model/_openai.py,sha256
|
540
|
+
inspect_ai/model/_openai.py,sha256=-N_LhZR8-nrnCL8h9lklo_RrGNDR1SzMJ0tPafVuPXo,19380
|
541
541
|
inspect_ai/model/_openai_computer_use.py,sha256=vbKkYLhqNuX16zuWfg5MaGp9H8URrPcLhKQ1pDsZtPo,5943
|
542
542
|
inspect_ai/model/_openai_responses.py,sha256=bQWuVvJIkS8CqtoX9z1aRb1aky4TNbMngG2paB3wsrA,20179
|
543
543
|
inspect_ai/model/_reasoning.py,sha256=qmR8WT6t_cb7NIsJOQHPyFZh2eLV0HmYxKo2vtvteQ4,929
|
@@ -556,12 +556,12 @@ inspect_ai/model/_providers/mistral.py,sha256=FbMPN_pw8LZal2iFGf5FX70ypuH3k44FUn
|
|
556
556
|
inspect_ai/model/_providers/mockllm.py,sha256=gL9f-f5TOdE4a0GVENr3cOIIp2kv8zVXWPZ608rouGk,2440
|
557
557
|
inspect_ai/model/_providers/none.py,sha256=6qLbZpHSoEZaaxFO7luieFjqig2Ju8Fu00DlRngAry8,935
|
558
558
|
inspect_ai/model/_providers/ollama.py,sha256=mBPSxaEkiH_RnlHKqOyFBlXObQhc2dfjL-rCKrea5u8,675
|
559
|
-
inspect_ai/model/_providers/openai.py,sha256=
|
559
|
+
inspect_ai/model/_providers/openai.py,sha256=zJkhtiEQrmsuhfL7mpBPpOlYJ_WNraeyTkjYTelF0no,16535
|
560
560
|
inspect_ai/model/_providers/openai_o1.py,sha256=k-Xm_Wzn1KHKL6Z1KTHg4CTTr8ybgiHvXkLiLdjP7Os,12926
|
561
561
|
inspect_ai/model/_providers/openai_responses.py,sha256=YPXt8KQfIEiiTpvtoQECBoNQLDLbwBW_KhBfM8vEhJk,6324
|
562
562
|
inspect_ai/model/_providers/openrouter.py,sha256=pDimDmm_4FzS4GZx0n9z8z717mQf3IQlgEy30huzpc4,4730
|
563
563
|
inspect_ai/model/_providers/providers.py,sha256=Sd2D9OcWkukuBcl_-KDfdpxMaAShv1JZhL5KfAM87CE,5817
|
564
|
-
inspect_ai/model/_providers/together.py,sha256=
|
564
|
+
inspect_ai/model/_providers/together.py,sha256=Wh3G0vhKHq5ofx1otwXjJFhM98Ll70IbqBhUNNV2-rk,9743
|
565
565
|
inspect_ai/model/_providers/vertex.py,sha256=60W7kgoA83GtKdMeJgNU2IAw0N0wTscg4YCcMPu2bwo,17185
|
566
566
|
inspect_ai/model/_providers/vllm.py,sha256=UYjCCXzw2hGJHVC3oPl-u2EI4iAm8ZncoIfYp1QJkbQ,14238
|
567
567
|
inspect_ai/model/_providers/util/__init__.py,sha256=d4T_qvXihTRd1zmQkNE3xUBlHCX8tOIbRK19EwU0fTs,717
|
@@ -692,9 +692,9 @@ inspect_ai/util/_sandbox/docker/internal.py,sha256=c8X8TLrBPOvsfnq5TkMlb_bzTALyc
|
|
692
692
|
inspect_ai/util/_sandbox/docker/prereqs.py,sha256=0j6_OauBBnVlpBleADcZavIAAQZy4WewVjbRn9c0stg,3355
|
693
693
|
inspect_ai/util/_sandbox/docker/service.py,sha256=hhHIWH1VDFLwehdGd19aUBD_VKfDO3GCPxpw1HSwVQk,2437
|
694
694
|
inspect_ai/util/_sandbox/docker/util.py,sha256=EeInihCNXgUWxaqZ4dNOJd719kXL2_jr63QCoXn68vA,3154
|
695
|
-
inspect_ai-0.3.
|
696
|
-
inspect_ai-0.3.
|
697
|
-
inspect_ai-0.3.
|
698
|
-
inspect_ai-0.3.
|
699
|
-
inspect_ai-0.3.
|
700
|
-
inspect_ai-0.3.
|
695
|
+
inspect_ai-0.3.87.dist-info/licenses/LICENSE,sha256=xZPCr8gTiFIerrA_DRpLAbw-UUftnLFsHxKeW-NTtq8,1081
|
696
|
+
inspect_ai-0.3.87.dist-info/METADATA,sha256=RD6qb-ORMVMNIGmffFG_tbkoUDdDgUWQrFezmf9MZqI,4965
|
697
|
+
inspect_ai-0.3.87.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
698
|
+
inspect_ai-0.3.87.dist-info/entry_points.txt,sha256=WGGLmzTzDWLzYfiyovSY6oEKuf-gqzSDNOb5V-hk3fM,54
|
699
|
+
inspect_ai-0.3.87.dist-info/top_level.txt,sha256=Tp3za30CHXJEKLk8xLe9qGsW4pBzJpEIOMHOHNCXiVo,11
|
700
|
+
inspect_ai-0.3.87.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|