inspect-ai 0.3.67__py3-none-any.whl → 0.3.68__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- inspect_ai/_display/core/panel.py +1 -2
- inspect_ai/_display/rich/display.py +2 -2
- inspect_ai/model/_model.py +1 -1
- {inspect_ai-0.3.67.dist-info → inspect_ai-0.3.68.dist-info}/METADATA +2 -2
- {inspect_ai-0.3.67.dist-info → inspect_ai-0.3.68.dist-info}/RECORD +9 -9
- {inspect_ai-0.3.67.dist-info → inspect_ai-0.3.68.dist-info}/LICENSE +0 -0
- {inspect_ai-0.3.67.dist-info → inspect_ai-0.3.68.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.67.dist-info → inspect_ai-0.3.68.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.67.dist-info → inspect_ai-0.3.68.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,7 @@ from dataclasses import dataclass
|
|
4
4
|
from typing import Any, AsyncIterator, Callable, Coroutine, Iterator
|
5
5
|
|
6
6
|
import rich
|
7
|
-
from rich.console import Console, RenderableType
|
7
|
+
from rich.console import Console, Group, RenderableType
|
8
8
|
from rich.live import Live
|
9
9
|
from rich.panel import Panel
|
10
10
|
from rich.progress import Progress as RProgress
|
@@ -298,7 +298,7 @@ def task_live_status(tasks: list[TaskStatus], progress: RProgress) -> Renderable
|
|
298
298
|
return task_panel(
|
299
299
|
profile=tasks[0].profile,
|
300
300
|
show_model=len(tasks) == 1,
|
301
|
-
body=progress,
|
301
|
+
body=Group("", progress),
|
302
302
|
subtitle=subtitle,
|
303
303
|
footer=task_footer(theme.light),
|
304
304
|
log_location=None,
|
inspect_ai/model/_model.py
CHANGED
@@ -663,7 +663,7 @@ def get_model(
|
|
663
663
|
base_url: Optional. Alternate base URL for model.
|
664
664
|
api_key: Optional. API key for model.
|
665
665
|
memoize: Use/store a cached version of the model based on
|
666
|
-
|
666
|
+
the parameters to `get_model()`
|
667
667
|
**model_args: Additional args to
|
668
668
|
pass to model constructor.
|
669
669
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: inspect_ai
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.68
|
4
4
|
Summary: Framework for large language model evaluations
|
5
5
|
Author: UK AI Security Institute
|
6
6
|
License: MIT License
|
@@ -45,7 +45,7 @@ Requires-Dist: s3fs>=2023
|
|
45
45
|
Requires-Dist: semver>=3.0.0
|
46
46
|
Requires-Dist: shortuuid
|
47
47
|
Requires-Dist: tenacity
|
48
|
-
Requires-Dist: textual
|
48
|
+
Requires-Dist: textual<=1.0.0,>=0.86.2
|
49
49
|
Requires-Dist: typing_extensions>=4.9.0
|
50
50
|
Requires-Dist: zipp>=3.19.1
|
51
51
|
Provides-Extra: dev
|
@@ -19,7 +19,7 @@ inspect_ai/_display/core/config.py,sha256=aUpPJ86w_vBT50b2yROnsU8rTEcK4445Ru4LFv
|
|
19
19
|
inspect_ai/_display/core/display.py,sha256=zgpNSU39pITyM_Xa41FsGIY5a4JtZbv7bDy7hjmJCM8,3057
|
20
20
|
inspect_ai/_display/core/footer.py,sha256=wMe4P-4Bhx4WV01dUW12o9-KBAoD2CSCvWZ-9_CMSNU,805
|
21
21
|
inspect_ai/_display/core/group.py,sha256=z8CIwQ-8Mm9adQ8JDuMjw94ih9GfymU5s-1qnbKoEPs,2871
|
22
|
-
inspect_ai/_display/core/panel.py,sha256=
|
22
|
+
inspect_ai/_display/core/panel.py,sha256=gyGYnsqHurUkUC51MyVuh3oGAtUEaFtyRwewOB6pDts,3828
|
23
23
|
inspect_ai/_display/core/progress.py,sha256=2dIRbpJGUx-Wz89ZABoACBGvJEGWJ3SDrFsuCrrpL7w,4198
|
24
24
|
inspect_ai/_display/core/results.py,sha256=aFLmG1Ij0fxYk2848QgQlesfMeRdHVEg_W9esmeL_S0,7355
|
25
25
|
inspect_ai/_display/core/rich.py,sha256=GPzc-0PWZVOPWxnjfQmNSK66uZXc3x8joz4ethgv_4M,2729
|
@@ -27,7 +27,7 @@ inspect_ai/_display/core/textual.py,sha256=kzMTt8ijrodwhDB5V50pP2IBhnUCusVbP86Ty
|
|
27
27
|
inspect_ai/_display/plain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
28
|
inspect_ai/_display/plain/display.py,sha256=fGITQj6w4-2A4zNMKFW32wdyVB5JpK-LsXMbFckzXTA,6743
|
29
29
|
inspect_ai/_display/rich/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
inspect_ai/_display/rich/display.py,sha256=
|
30
|
+
inspect_ai/_display/rich/display.py,sha256=aJiuaEL8aEdOvdkKWobhlDuMr2X2j1M_SiAezPd3k-A,10920
|
31
31
|
inspect_ai/_display/textual/app.py,sha256=PyDkwzyEHLjObvwB3PtPlP0CSU9L7frYb1eoQ5MhnR0,15991
|
32
32
|
inspect_ai/_display/textual/app.tcss,sha256=ymx47Y2fAbce4vPOrpeij1p9qwSipT7Dd6fSxCTknT8,249
|
33
33
|
inspect_ai/_display/textual/display.py,sha256=zTG8k67iT-xq1H8CVwtqZdvuo_O2hsgh4q4y8EKRkf8,2027
|
@@ -448,7 +448,7 @@ inspect_ai/model/_chat_message.py,sha256=Y0X1b1uaZhw0brSGfXVU7lADrXh2nR6iSWgBR_m
|
|
448
448
|
inspect_ai/model/_conversation.py,sha256=cd5ru6lD2xsfkdB9lfWYPbuvzdqjv9geOVFl2HXSad8,2163
|
449
449
|
inspect_ai/model/_generate_config.py,sha256=jKsb5qpiV4o2Wdkaez6EzSHhnUc3_j4dTZIOzV9P6Sc,8976
|
450
450
|
inspect_ai/model/_image.py,sha256=kpO2Bn_-c-dK80HuPOPH1eSNmcoc39kofwf4yTTiTFE,477
|
451
|
-
inspect_ai/model/_model.py,sha256=
|
451
|
+
inspect_ai/model/_model.py,sha256=7ByKcGdmrmpI3BZlNXXLVN-xjyGbaKObHDRS7ZJMBAw,42388
|
452
452
|
inspect_ai/model/_model_call.py,sha256=r6ObHZwm7jy1qX2qxvAP6iPV3BhdGThL-VH-QEawQhA,2017
|
453
453
|
inspect_ai/model/_model_output.py,sha256=QM2K4zVqUumfhAFzDkvxb60qT4DbCvPjqva0WfJ4gWU,7321
|
454
454
|
inspect_ai/model/_openai.py,sha256=Z17GAEU-Zraqy-wRcY3KGC34gN1YvRoy0hdYZpt-BjI,13948
|
@@ -617,9 +617,9 @@ inspect_ai/util/_sandbox/docker/internal.py,sha256=fATyk2pdtjSl-D0VPT4dmkXV-gOc5
|
|
617
617
|
inspect_ai/util/_sandbox/docker/prereqs.py,sha256=0j6_OauBBnVlpBleADcZavIAAQZy4WewVjbRn9c0stg,3355
|
618
618
|
inspect_ai/util/_sandbox/docker/service.py,sha256=hhHIWH1VDFLwehdGd19aUBD_VKfDO3GCPxpw1HSwVQk,2437
|
619
619
|
inspect_ai/util/_sandbox/docker/util.py,sha256=CuYrt9iyLjPSVDEs_oGTas8wAwMwQc_45dZa2g3E4cY,2847
|
620
|
-
inspect_ai-0.3.
|
621
|
-
inspect_ai-0.3.
|
622
|
-
inspect_ai-0.3.
|
623
|
-
inspect_ai-0.3.
|
624
|
-
inspect_ai-0.3.
|
625
|
-
inspect_ai-0.3.
|
620
|
+
inspect_ai-0.3.68.dist-info/LICENSE,sha256=xZPCr8gTiFIerrA_DRpLAbw-UUftnLFsHxKeW-NTtq8,1081
|
621
|
+
inspect_ai-0.3.68.dist-info/METADATA,sha256=HQ8Pd2TbpMviMgRkDDYOxIvF6KEJz1omDv_hP7g6E3o,4785
|
622
|
+
inspect_ai-0.3.68.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
623
|
+
inspect_ai-0.3.68.dist-info/entry_points.txt,sha256=WGGLmzTzDWLzYfiyovSY6oEKuf-gqzSDNOb5V-hk3fM,54
|
624
|
+
inspect_ai-0.3.68.dist-info/top_level.txt,sha256=Tp3za30CHXJEKLk8xLe9qGsW4pBzJpEIOMHOHNCXiVo,11
|
625
|
+
inspect_ai-0.3.68.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|